Skip to content

Commit 379c58e

Browse files
feat(api): OpenAPI spec update via Stainless API (#86)
1 parent 9ed091b commit 379c58e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
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

src/resources/evaluations.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class Evaluations extends APIResource {
1313
}
1414

1515
/**
16-
* Update a evaluation by ID.
16+
* Update an evaluation by ID.
1717
*/
1818
update(
1919
id: string,
@@ -31,14 +31,14 @@ export class Evaluations extends APIResource {
3131
}
3232

3333
/**
34-
* Delete a evaluation by ID.
34+
* Delete an evaluation by ID.
3535
*/
3636
delete(id: string, options?: Core.RequestOptions): Core.APIPromise<EvaluationDeleteResponse> {
3737
return this._client.delete(`/sdk/v1/evaluations/${id}`, options);
3838
}
3939

4040
/**
41-
* Retrieve a evaluation by ID
41+
* Retrieve an evaluation by ID
4242
*/
4343
get(id: string, options?: Core.RequestOptions): Core.APIPromise<Evaluation> {
4444
return this._client.get(`/sdk/v1/evaluations/${id}`, options);

0 commit comments

Comments
 (0)