Currently chat interactions are independent. We do not persist the message response from the LLM and thus we do not include potentially relevant past responses - a history - in future chat interations that are related.
- We'd like capture chat history, so that it can be used when it is relevant for future chat interactions.
- We'd like to have a concept of "named threads" where a chat interaction creates a "conversation" with an autogenerated but relevant name (much like chat.openai.com).
Currently chat interactions are independent. We do not persist the message response from the LLM and thus we do not include potentially relevant past responses - a history - in future chat interations that are related.