From 7f1af8007c35c9e4c595226135ad3f4139f3e31f Mon Sep 17 00:00:00 2001 From: Christopher Date: Wed, 21 Jun 2023 20:33:13 -0400 Subject: [PATCH] fix(context-16k): model uses 16k tokens now --- extension.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extension.js b/extension.js index 366328b..8a9c867 100644 --- a/extension.js +++ b/extension.js @@ -114,7 +114,7 @@ const openGPTContextPanelCommand = vscode.commands.registerCommand('extension.op // Call OpenAI API with the question and file contents try { const chatCompletion = await openai.createChatCompletion({ - model: "gpt-3.5-turbo", + model: "gpt-3.5-turbo-16k", messages: [ { role: "system", content: "Answer the coding questions, only provide the code and documentation, explaining the solution after providing the code." }, { role: "user", content: question },