Hi everyone I’m new to the forum and had a doubt. I’ve searched if anyone had the same problem as me and I don’t think there is.
I’ve been using the Assistants API for around 2 years more or less and found out recently about the deprecation of it and started migrating to Responses API. I haven’t had any problems until now since it’s pretty well documented or solved by other topics.
My problem is I had a chatbot that under every message it displayed the time the assistant finished said response and the time the user sent each message. This was pretty easy since the Message object had created_at and completed_at timestamps.
Now with Responses API the only timestamp I see that could work is the Response object which has both. During the conversation it would be fine to just use this but I also have a way to save a conversation with the chatbot by saving the Messages ids and load the same conversation as a “History viewer mode” where you can review the messages.
So should I just do a workaround and save the responses instead of the items or if the devs see this topic is there hope for the items in a conversation to have the same timestamps.
Sorry in advance for the dumb question.