Skip to content

Commit

Permalink
Update route.ts to fix BadRequestError
Browse files Browse the repository at this point in the history
  • Loading branch information
Defimatt committed May 1, 2024
1 parent 15cc623 commit 8a4b3b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/api/assistants/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export async function POST() {
const assistant = await openai.beta.assistants.create({
instructions: "You are a helpful assistant.",
name: "Quickstart Assistant",
model: "gpt-4-turbo-preview",
model: "gpt-4-turbo",
tools: [
{ type: "code_interpreter" },
{
Expand Down

0 comments on commit 8a4b3b0

Please sign in to comment.