Skip to content

Commit

Permalink
feat(api): OpenAPI spec update via Stainless API (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and meorphis committed Jun 25, 2024
1 parent 44c4038 commit 499c928
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 21
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/prompt-foundry%2Fprompt-foundry-sdk-d6d4277989f241a4bd261493b475e6bd1e3b90978064575503a1ce2ff0ed1324.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/prompt-foundry%2Fprompt-foundry-sdk-4137caec48206e984cbf62aabf1bd1f76c525ac66c0ad16760e49564095b2877.yml
6 changes: 3 additions & 3 deletions src/resources/evaluations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class Evaluations extends APIResource {
}

/**
* Update a evaluation by ID.
* Update an evaluation by ID.
*/
update(
id: string,
Expand All @@ -31,14 +31,14 @@ export class Evaluations extends APIResource {
}

/**
* Delete a evaluation by ID.
* Delete an evaluation by ID.
*/
delete(id: string, options?: Core.RequestOptions): Core.APIPromise<EvaluationDeleteResponse> {
return this._client.delete(`/sdk/v1/evaluations/${id}`, options);
}

/**
* Retrieve a evaluation by ID
* Retrieve an evaluation by ID
*/
get(id: string, options?: Core.RequestOptions): Core.APIPromise<Evaluation> {
return this._client.get(`/sdk/v1/evaluations/${id}`, options);
Expand Down

0 comments on commit 499c928

Please sign in to comment.