I have one endpoint specifically for streaming messages. I thought continuously retrieving the message id would give me the most recent version of it, but instead it only updates when it reaches its final form. Therefore, would it be possible to have access to the streaming even after I submitted my tool outputs in another endpoint, for example?
Hey there and welcome to the community!
Did you set "stream": true
when running it?
Otherwise, is your own endpoint built to stream data?
Hi @Macha, thanks!
The thing is, I am running it with stream in another endpoint. I have “/ingest_documents” and “/stream_message”. In “/ingest_documents” I run openai_client.beta.threads.runs.submit_tool_outputs_stream, but I would like to access this message stream in another endpoint.