Relative Content

Tag Archive for javascriptreactjsnode.jsopenai-api

OpenAI API issue with React

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 […]

OpenAI API issue with React

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 […]