const assistant = await openAI.beta.assistants.create(
name= "Doc Analyzer",
instructions=
"You analyze documents and retrieve key information",
tools= [{ "type": "retrieval"}],
model= "gpt-4-turbo",
);
This is the code im using to create my assistant in React however my program does not go to the next line of code after this, I’m not sure what the problem is.
New contributor
Manav Santhosh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.