skip to Main Content

Javascript – req.body.thread_id is undefined

I have a problem with req.body.thread_id = thread.id, when I call it in, it's undetermined app.post('/api/assistant/start', async (req, res) => { const thread = await client.beta.threads.create() console.log(""thread_id": " + thread.id); req.body.thread_id = thread.id return res.json(""thread_id": " + thread.id) }); app.post('/api/assistant/chat',…

VIEW QUESTION
Back To Top
Search