transitive-bullshit / agentic

AI agent stdlib that works with any LLM and TypeScript AI SDK.
https://agentic.so
MIT License
16.22k stars 2.12k forks source link

Hope to add the ability to clear historical conversations #558

Closed Jxells closed 1 year ago

Jxells commented 1 year ago

Describe the feature

Can you add a function to clear the history dialog, like the official clear dialog, thank you. image

transitive-bullshit commented 1 year ago

We're focusing more on the official OpenAI chat completions API and moving away from the unofficial ChatGPT webapp's API (which is not official supported by OpenAI and is unlikely to be supported by them in the future).

For the official API ChatGPTAPI, there is no persistent / stored conversations on OpenAI's side of things, so the clear conversations functionality doesn't apply. You have access to the local KV store if you'd like to clear it at any point.

Hope that makes sense && thanks!