You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't think this is a bug. The "created" field is the same for each streamed partial result in Azure, but it's also the same when using OpenAI's servers. The API docs describe "created" as:
created
integer
The Unix timestamp (in seconds) of when the chat completion was created.
The multiple parts of a streamed response come from a single chat completion, which is probably why the "created" field is always the same. It's a timestamp of the completion as a whole, not a timestamp of individual streamed parts. This field is created by data from the remote server, not go-openai, so either way this isn't a go-openai bug.
I use this sdk to connect with azure chat gpt .and set stream true to request.but the result seems a same one createdTime.
I wonder why?
The text was updated successfully, but these errors were encountered: