Skip to content

Commit

Permalink
Merge pull request openai#2 from Defimatt/main
Browse files Browse the repository at this point in the history
Update route.ts to fix BadRequestError
  • Loading branch information
ibigio committed May 1, 2024
2 parents 15cc623 + 8a4b3b0 commit a3917bb
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 a3917bb

Please sign in to comment.