Remix.run Logo
AlecSchueler 5 days ago

How do you store/view the data I send you?

reissbaker 4 days ago | parent [-]

For API prompts or completions, we don't store after we return the completion to your prompt (our privacy policy allows us to store for a maximum of 14 days, just to cover accidental log statement deploys). For the web UI we store them in Postgres, since the web UI lets you view your message history and we wouldn't be able to serve that to you without storing it.

AlecSchueler 4 days ago | parent [-]

https://developer.mozilla.org/en-US/docs/Web/API/Window/loca...

reissbaker 3 days ago | parent [-]

Yeah, localStorage-only doesn't do things like sync across devices or persist if you lose your phone. But since we expose an OpenAI-compatible endpoint, if you don't care about those things there are plenty of LLM clients that will keep your data 100% on-device that you can use instead of the web UI.