Skip to content

Commit

Permalink
remove "auto" for now
Browse files Browse the repository at this point in the history
  • Loading branch information
pgayvallet committed Sep 11, 2024
1 parent 09d2a3f commit 93f1a2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/plugins/inference/server/routes/chat_complete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const chatCompleteBodySchema: Type<ChatCompleteRequestBody> = schema.object({
])
),
functionCalling: schema.maybe(
schema.oneOf([schema.literal('native'), schema.literal('simulated'), schema.literal('auto')])
schema.oneOf([schema.literal('native'), schema.literal('simulated')])
),
});

Expand Down

0 comments on commit 93f1a2d

Please sign in to comment.