ChatGPT
ChatGPT copied to clipboard
Tracking conversation response bug
When I send the new chat with history for my request every time, it response me the former response , that is not what we want it to be.
this is the first time request param:
this is the first time response:
while this is the following request param:
this is the following response, we can see it response the first response as the following response here
{ "id": "chatcmpl-owvp8S7mqMjsb78RIOzVu4FlXcsb", "created": 1712821485062, "object": "chat.completion.chunk", "model": "gpt-3.5-turbo", "text": "hi", "choices": [ { "delta": { "content": "hi" }, "index": 0, "finish_reason": "stop" } ] }{ "id": "chatcmpl-owvp8S7mqMjsb78RIOzVu4FlXcsb", "created": 1712821485062, "object": "chat.completion.chunk", "model": "gpt-3.5-turbo", "text": "Hello! How can I assist you today?", "choices": [ { "delta": { "content": "Hello! How can I assist you today?" }, "index": 0, "finish_reason": "stop" } ] } . . ellipsis some response here . . { "id": "chatcmpl-owvp8S7mqMjsb78RIOzVu4FlXcsb", "created": 1712821485062, "object": "chat.completion.chunk", "model": "gpt-3.5-turbo", "text": "I'm just a collection of digital circuits and code, so I don't have feelings like humans do. But I'm here and ready to help you with whatever you need! How about you? How are you doing today?", "choices": [ { "delta": { "content": "?" }, "index": 0, "finish_reason": null } ] }{ "id": "chatcmpl-owvp8S7mqMjsb78RIOzVu4FlXcsb", "created": 1712821485062, "object": "chat.completion.chunk", "model": "gpt-3.5-turbo", "text": "I'm just a collection of digital circuits and code, so I don't have feelings like humans do. But I'm here and ready to help you with whatever you need! How about you? How are you doing today?", "choices": [ { "delta": { "content": "" }, "index": 0, "finish_reason": "stop" } ] }
@dealdot, are you sure you're using this project? And have you not modified it locally? Because I see a "text" property in the chunk responses, which we don't have in our project, and I couldn't replicate the issue you're talking about.