Skip to content

Commit f4ed900

Browse files
stainless-botstainless-app[bot]
authored andcommitted
fix(api): remove non-GA instance_id param (#677)
1 parent 6e3ede2 commit f4ed900

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

src/resources/chat/completions.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -708,12 +708,6 @@ export interface ChatCompletionCreateParamsBase {
708708
*/
709709
functions?: Array<ChatCompletionCreateParams.Function>;
710710

711-
/**
712-
* An unique identifier to a custom instance to execute the request. The requesting
713-
* organization is required to have access to the instance.
714-
*/
715-
instance_id?: string | null;
716-
717711
/**
718712
* Modify the likelihood of specified tokens appearing in the completion.
719713
*

tests/api-resources/chat/completions.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ describe('resource completions', () => {
3030
frequency_penalty: -2,
3131
function_call: 'none',
3232
functions: [{ description: 'string', name: 'string', parameters: { foo: 'bar' } }],
33-
instance_id: 'string',
3433
logit_bias: { foo: 0 },
3534
logprobs: true,
3635
max_tokens: 0,

0 commit comments

Comments
 (0)