top | item 46391472

ChatGPT conversations still lack timestamps after years of requests

239 points| Valid3840 | 2 months ago |community.openai.com

160 comments

order

zbycz|2 months ago

If you download a Data export, the timestamps are there for every conversation, and often for messages as well.

The html file is just a big JSON with some JS rendering, so I wrote this bash script which adds the timestamp before the conversation title:

  sed -i 's|"<h4>" + conversation.title + "</h4>"|"<h4>" + new Date(conversation.create_time*1000).toISOString().slice(0, 10) + " @ " + conversation.title + "</h4>"|' chat.html

gnyman|2 months ago

This is a bit of sidetrack, but in case someone is interested in reading their history more easily. My conversations.html export file was ~200 MiB and I wanted something easier to work with, so I've been working on a project to index and make it searchable.

It uses the pagefind project so it can be hosted on a static host, and I made a fork of pagefind which encrypts the indexes so you can host your private chats wherever and it will be encrypted at rest and decrypted client-side in the browser.

(You still have to trust the server as the html itself can be modified, but at least your data is encrypted at rest.)

One of the goals is to allow me to delete all my data from chatgpt and claude regularly while still having a private searchable history.

It's early but the basics work, and it can handle both chatgpt and claude (which is another benefit as I don't always remember where I had something).

https://github.com/gnyman/llm-history-search

caminanteblanco|2 months ago

Do you know if this is available in the actual web interface, and just not displayed, or is it just in the data export? If it is in the web, maybe a browser extension would be worth making.

stuaxo|2 months ago

There's a github project which converts them to markdown which works fairly well too.

FloorEgg|2 months ago

My guess is that including timestamps in messages to the LLM will bias the LLMs responses in material ways, and ways they don't want, and showing timestamps to users but not the LLM will create confusion when the user assumes the LLM is aware of them but it isn't. So the simple product management decision was to just leave them out.

Kailhus|2 months ago

That's no excuse imho. I see 2 different endpoints, 1 for llm stream and 1 for msg history (with stamps). New timestamps could be added FE as new messages start without polluting the user input for example

qweiopqweiop|2 months ago

I'd bet this is correct. I'd also bet you've worked on user facing features.

caminanteblanco|2 months ago

I could definitely see that being an issue, but like with so many UX decisions, I wish they would at least hide the option somewhere in a settings menu.

I also don't think it would be impossible to give the LLM access to the timestamps through a tool call, so it's not constantly polluting the chat context.

Valid3840|2 months ago

ChatGPT still does not display per-message timestamps (time of day / date) in conversations.

This has been requested consistently since early 2023 on the OpenAI community forum, with hundreds of comments and upvotes and deleted threads, yet remains unimplemented.

Do any of you could think of a reason (UX-wise) for it not to be displayed?

Workaccount2|2 months ago

Regular people hate numbers.

Not a joke. To capture a wide audience you want to avoid numbers, among other technical niceties.

qazxcvbnmlp|2 months ago

We humans use timestamps in conversations to reference a persons particular state of reference at a given point in time.

Ie “remember on Tuesday how you said that you were going to make tacos for dinner”.

Would an llm be able to reason about its internal state? My understanding is that they dont really. If you correct them they just go “ah you right” they dont say “oh i had this incorrect assumption here before and with this new information i now understand it this way”

If i chatted to an llm and was like “remember on Tuesday when you said X” i suspect it wouldn't really flow.

milowata|2 months ago

It’s better for them if you don’t know how long you’ve been talking to the LLM. Timestamps can remind you that it’s been 5 hours: without it you’ll think less about timing and just keep going.

eth0up|2 months ago

My honest opinion, which may be entirely wrong but remains my impression, is:

User Engagement Maximization At Any Cost

Obviously there's a point at which a session becomes too long, but I suspect a sweet spot somewhere which optimization is made for.

I often observe, whether as I perceive or not, that among the multiple indicators that I suspect of engagement augmentation, is also the tendency for vital information to be withheld while longer more complex procedures receive higher priority than simpler cleaner solutions.

Of course, all sorts of emergent behaviors could convey such impressions falsely. But I do believe an awful lot of psychology and clever manipulation have been provided as tools for the system.

I have.a lot of evidence for this and much more, but I realize it may merely be coincidence. That said, many truly fascinating, fully identifiable functions from pathological psychology can be seen. DARVO, gaslighting and basically everything one would see with a psychotic interlocutor.

Edit Mych of the above has been observed after putting the system under scrutiny. On one super astonishing and memorable occasion GPT recommend I call a suicide hotline because I questioned its veracity and logic

intrasight|2 months ago

Sounds like an easy browser extension

bloqs|2 months ago

stop using the product until the products creators at least demonstrate they listen. they have never been in a riskier position

thway15269037|2 months ago

ChatGPT to this day does not have a single simplest feature -- fork chat from message.

That's the thing even the most barebones open-source wrappers had since 2022. Probably even before because ERP stuff people played with predates chatgpt by like two years (even if it was very simple).

Gemini btw too.

vimy|2 months ago

ChatGPT has conversation branches. Or do I misunderstand?

Just edit a message and it’s a new branch.

cyral|2 months ago

You can click the three dots on any response and click "Branch in new chat". Not sure when it was added but it exists.

caminanteblanco|2 months ago

This is a constant frustration for me with Gemini. Especially since things like Deep Research and Canvas mode lock you in, seemingly arbitrary. LLMs to my understanding are Markovian prompt-to-prompt, so I don't see why this is an issue at all.

firesteelrain|2 months ago

Just a note to those adding the time to the personalization response. It’s inaccurate. If you have an existing chat, the time is near the last time you had that chat session active. If you open a new one, it can be off by + or - 15 minutes for some reason

baby|2 months ago

I was using a continuous conversation with chatgpt to keep track of my lifts, and then I realize it never understand what day I'm talking to it, like there is no consistency, it might as well be the date of the first message you sent

Stratoscope|2 months ago

Claude's web interface has an elegant solution. When you roll the mouse over one of your prompts, it has the abbreviated date in the row of Retry/Edit/Copy icons, e.g. "Dec 17". Then if you roll the mouse over that date, you get the full date and time, e.g. "Dec 17, 2025, 10:26 AM".

This keeps the UI clean, but makes it easy to get the timestamp when you want it.

Claude's mobile app doesn't have this feature. But there is a simple, logical place to put it. When you long-press one of your prompts, it pops up a menu and one line could be added to it:

  Dec 17, 2025, 10:26 AM [I added this here]
  Copy Message
  Select Text
  Edit
ChatGPT could simply do the same thing for both web and mobile.

submeta|2 months ago

Beyond the lack of timestamps, ChatGPT produces oddly formatted text when you copy answers. It’s neither proper markdown nor rich text. The formatting is consistently off: excessive newlines between paragraphs, strangely indented lists, and no markdown support whatsoever.

I regularly use multiple LLM services including Claude, ChatGPT, and Gemini, among others. ChatGPT’s output has the most unusual formatting of them all. I’ve resorted to passing answers through another LLM just to get proper formatting.

vendiddy|2 months ago

My biggest complaint about ChatGPT is how slow their interface is when the conversations get log. This is surprising to me given that it's just rendering chats.

It's not enough to turn me off using it, but I do wish they prioritized improving their interface.

throw03172019|2 months ago

New startup idea: ChatGPT but with timestamps. $100M series A

bravetraveler|2 months ago

Surely an intern over there can prompt a toggle/hover event

diziet|2 months ago

I would also love to see a token budget use for the chats -- to know when the model is about to run out of context. It's crazy this is not there.

joquarky|2 months ago

It would have to be intentionally vague since there is no hard cutoff threshold.

baggy_trough|2 months ago

The bonkers thing is you can't easily print the chats or export them as PDF.

micromacrofoot|2 months ago

They must have a small team for the UI and probably don't consider it part of their goals for long-term profitability? UI enhancements like this are surprisingly slow for a company with this much funding

isuckatcoding|2 months ago

The only (silly) reason I can think of is that a non trivial number of people copy pasta directly from chatgpt responses and having the timestamp there would be annoying.

Kailhus|2 months ago

Yeah, that's a valid point though some text on a page can easily be made unselectable via css (html?). I think through user-select

tomComb|2 months ago

You can see a chat timestamp when it shows up as a search result.

I’m not suggesting this is sufficient, I’m just noting there is somewhere in the user interface that it is displayed.

firesteelrain|2 months ago

There is something wrong with the time embedded/hidden. I don’t show it as accurate at all. Maybe they are using it for some other reason

romperstomper|2 months ago

I wish ChatGPT also had collapsable answers. Now the answers are quite long in most of cases and the whole threads become inconvenient to scroll.

abadar|2 months ago

I built a single page website that copies the current time to my clipboard and I paste it into my messages. It's inconvenient and I don't do it irregularly.

I'll have to look into the extension described in the link. Thank you for sharing. It's nice to know it's a shared problem.

alexthehurst|2 months ago

Look into keyboard macro programs for a much easier way to do this. I use Espanso and have it set up to paste the time anywhere I type `;tm`.

subscribed|2 months ago

On windows you could write AutoHotkey macro to do it for you - just paste current time at the cursor at the touch of the trigger key.

stuckkeys|2 months ago

Time stamps? lol They still don’t have the option to search your previous history. Luckily I built an extension that stores all chats locally to a database so I can reference and view offline if I want too. Time stamps included.

stainablesteel|2 months ago

may as well make a model stamp too, to remember which one was responding

realitydrift|2 months ago

The lack of visible timestamps feels small, but it actually creates a subtle fidelity problem. Conversations imply continuity that may not exist. Minutes, hours, or days collapse into the same narrative flow.

When you remove temporal markers, you increase cognitive smoothing and post-hoc rationalization. That’s fine for casual chat, but risky for long-running, reflective, or sensitive threads where timing is part of the meaning.

It’s a minor UI omission with outsized effects on context integrity. In systems that increasingly shape how people think, temporal grounding shouldn’t be optional or hidden in the DOM.

phyzix5761|2 months ago

Is it possible they're reusing responses which are close enough by some factor? Maybe this is why exposing a timestamp won't be beneficial for them.

isege|2 months ago

This is not just about timestamps but how the traditional chat UI is simply not a good interface for information retrieval and organization.

journal|2 months ago

You only need that info if you know you need it in your rag. Over the last two years of usage I don't recall where I'd need those timestamps but I know there are cases. Still, this would have to be an option because otherwise it would be waste of tokens. However, we have to consider they are competing for the quality AND length of the response even if a shorter response is better. There's a pretzel of considerations when talking about this.

gukoff|2 months ago

Timestamps are conversation metadata and don't need to be fed to the LLM and require tokens.

cj|2 months ago

Imagine you started having back pain months ago and you remember asking ChatGPT questions when it first started.

Now you’re going to the doctor and you forgot exactly when the pain started. You remember that you asked ChatGPT about the pain the day it started.

So you look for the chat, and discover there are no dates. It feels like such an obvious thing that’s missing.

Let’s not over complicate things. There aren’t that many considerations. It’s just a date. It doesn’t need to be stuffed into the context of the chat. Not sure why quality or length of chat would need to be affected?

callamdelaney|2 months ago

They also don’t support code formatting of inputs. You’d think after 3 years out whatever theyd have resolved that.

joquarky|2 months ago

They're too focused on hiring ML people and not enough on hiring highly experienced web people.

The painful slowness of long chats (especially in thinking mode for some reason) demonstrates this.

chasing0entropy|2 months ago

It's ugly, why it isn't at least exposed as an option to enable for power users would make me look at some advantage time stamps would give to an inference scraper or possibly their service APIs don't have contemporaneous access to the metadata available from the web interface.

kingforaday|2 months ago

Just like on a piece of hardware that doesn't have a RTC, we rely on NTP. Maybe we just need an NTP MCP for the agents. Looks like there are several open-source projects already but I'm not linking to them because I don't know their quality or trust.

mv4|2 months ago

Other than the potential liability, cost may also be a factor.

Back in April 2025, Altman mentioned people saying "thank you" was adding “tens of millions of dollars” to their infra costs. Wondering if adding per-message timestamps would cost even more.

cj|2 months ago

Presumably you could decouple timestamps from inference.

I would be very surprised if they don’t already store date/time metadata. If they do, it’s just a matter of exposing it.

g947o|2 months ago

I think "thank you" are used for inference in follow-up messages, but not necessarily timestamps.

I just asked ChatGPT this:

> Suppose ChatGPT does not currently store the timestamp of each message in conversations internally at all. Based on public numbers/estimates, calculate how much money it will cost OpenAI per year to display the timestamp information in every message, considering storage/bandwidth etc

The answer it gave was $40K-$50K. I am too dumb and inexperienced to go through everything and verify if it makes sense, but anyone who knows better is welcome to fact check this.

mikkupikku|2 months ago

Altman was being dumb; being polite to LLMs makes them produce higher quality results which results in less back-and-forth, saving money in the long run.

stainablesteel|2 months ago

this is actually hilarious, also easily fixable if they just respond to that with a pre-determined

if response == 'thank you': print('your welcome')

nacozarina|2 months ago

it’s wild ppl accept his rhetoric at face value

wrs|2 months ago

In other news, billions of dollars later Claude still can’t export, save, or print a chat in any usable form.

tom1337|2 months ago

What annoys me even more is that ChatGPT doesn't alert you, when you near the context window limit. I have a chat which I've worked on for a year and now hit the context window. I've worked around this by doing a GDPR download of all messages, re-constructed the conversation inside a markdown file and then gave that file to claude to create a summarized / compacted version of that chat...

bobse|2 months ago

[deleted]

itwillnotbeasy|2 months ago

But it still better than Gemini! They haven't figured how to put a chat name into webpage title. /s

roschdal|2 months ago

I have had enough of this Evil AI. Never again.

wltr|2 months ago

Why would one even need time stamps in there? No, really, what for?

PunchTornado|2 months ago

Surprised that people still use chatgpt

baby|2 months ago

Personally I use all of them all the time and chatgpt is still on top

serf|2 months ago

having been a customer of Anthropic and Google at varying times, it's not surprising to me in the least.

As the companies sprint towards AGI as the goal the floor for acceptable customer service has never been lower. These two concepts are not unrelated.

logicallee|2 months ago

what do you use?