From 8e6413d8528c3551fce8cc2f841785f1aef18ed2 Mon Sep 17 00:00:00 2001 From: Kevin Hill Date: Sat, 26 Aug 2023 06:16:42 -0700 Subject: [PATCH] Update README.md Adding `-0613` to the model per OpenAI stating that those models have the function calling capabilities. https://openai.com/blog/function-calling-and-other-api-updates --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b82e1b4..3f52a17 100644 --- a/README.md +++ b/README.md @@ -247,7 +247,7 @@ const messages: ChatCompletionRequestMessage[] = [ }, ] const request: CreateChatCompletionRequest = { - model: 'gpt-3.5-turbo', + model: 'gpt-3.5-turbo-0613', messages, functions: [getCurrentWeatherTool.schema], stream: false,