diff --git a/src/resources/models.ts b/src/resources/models.ts index 2864600f9..f7c390cf0 100644 --- a/src/resources/models.ts +++ b/src/resources/models.ts @@ -59,7 +59,7 @@ export class Models extends APIResource { } update(model: string, body: Record, options?: Core.RequestOptions) { - return this._client.patch(`/models/${model}`, { body, ...options }); + return this._client.post(`/models/${model}/config`, { body, ...options }); } }