Luan Fernandes
Luan Fernandes
Currently, the LCEL retriever in dialog-lib forces the document content to join question and content together: https://github.com/talkdai/dialog-lib/blob/4e8de796be1a21c877eb393066a78235e6a193ac/dialog_lib/embeddings/retrievers.py#L31-L39 However, the user already defines which fields should be embedded in [`load_csv.py`](https://github.com/talkdai/dialog/blob/main/src/load_csv.py)`, so...
I'm attempting to implement an asynchronous approach using PostgresChatMessageHistory in combination with [RunnableWithMessageHistory](https://api.python.langchain.com/en/latest/runnables/langchain_core.runnables.history.RunnableWithMessageHistory.html), but I'm encountering some challenges. While PostgresChatMessageHistory appears to support asynchronous connections with async methods, I haven't...
Why should session_id be a valid UUID? The session_id is used as a unique identifier for the chat session, but why must clients enforce it to be a valid UUID?...