Skip to content

Commit

Permalink
fix(api): remove non-GA instance_id param (#677)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-bot committed Feb 19, 2024
1 parent 6e3ede2 commit 4d0d4da
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
6 changes: 0 additions & 6 deletions src/resources/chat/completions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -708,12 +708,6 @@ export interface ChatCompletionCreateParamsBase {
*/
functions?: Array<ChatCompletionCreateParams.Function>;

/**
* An unique identifier to a custom instance to execute the request. The requesting
* organization is required to have access to the instance.
*/
instance_id?: string | null;

/**
* Modify the likelihood of specified tokens appearing in the completion.
*
Expand Down
1 change: 0 additions & 1 deletion tests/api-resources/chat/completions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ describe('resource completions', () => {
frequency_penalty: -2,
function_call: 'none',
functions: [{ description: 'string', name: 'string', parameters: { foo: 'bar' } }],
instance_id: 'string',
logit_bias: { foo: 0 },
logprobs: true,
max_tokens: 0,
Expand Down

0 comments on commit 4d0d4da

Please sign in to comment.