-
Notifications
You must be signed in to change notification settings - Fork 294
Open
Labels
Description
Why are we doing this?
Users want to upload files through the chat UI and immediately ask questions about those files together with the content indexed in the main RAG index.
What does it do?
The Web UI allows users to upload documents. Each document is linked to the user ID and conversation ID. The document is then chunked and stored in a shared conversation index (there is no per-conversation index). The agent can retrieve these chunks to ground the user’s questions.
Technical guidelines
The solution design still needs refinement.
The system should query the conversation file index only when files have been uploaded for that conversation, avoiding unnecessary double queries on every user request.