Hello Everyone,To give you a bit of context, I have an azure logic apps that basically interact with OPENAI API through API calls; after I create an HTTP request with responses endpoint and having the conv_id attached to the request, some times for no real reason the API give me the following error
{ "error": { "message": "Another process is currently operating on this conversation. Please retry in a few seconds.", "type": "invalid_request_error", "param": "conversation", "code": "conversation_locked" } }
However, I am sure that no other process is currently operating on this conversation, because I have made sure that the parallelism is disabled, so the execution of the azure logic app is strictly in a queu and no other logic app are using the same conv_id.
I was wondering if this is a bug, and if there is a way to check on the state of a conversation in real-time before sending a request or anything. please advise