File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
configured_endpoints : 21
2
- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/prompt-foundry%2Fprompt-foundry-sdk-d6d4277989f241a4bd261493b475e6bd1e3b90978064575503a1ce2ff0ed1324 .yml
2
+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/prompt-foundry%2Fprompt-foundry-sdk-4137caec48206e984cbf62aabf1bd1f76c525ac66c0ad16760e49564095b2877 .yml
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export class Evaluations extends APIResource {
13
13
}
14
14
15
15
/**
16
- * Update a evaluation by ID.
16
+ * Update an evaluation by ID.
17
17
*/
18
18
update (
19
19
id : string ,
@@ -31,14 +31,14 @@ export class Evaluations extends APIResource {
31
31
}
32
32
33
33
/**
34
- * Delete a evaluation by ID.
34
+ * Delete an evaluation by ID.
35
35
*/
36
36
delete ( id : string , options ?: Core . RequestOptions ) : Core . APIPromise < EvaluationDeleteResponse > {
37
37
return this . _client . delete ( `/sdk/v1/evaluations/${ id } ` , options ) ;
38
38
}
39
39
40
40
/**
41
- * Retrieve a evaluation by ID
41
+ * Retrieve an evaluation by ID
42
42
*/
43
43
get ( id : string , options ?: Core . RequestOptions ) : Core . APIPromise < Evaluation > {
44
44
return this . _client . get ( `/sdk/v1/evaluations/${ id } ` , options ) ;
You can’t perform that action at this time.
0 commit comments