This issue is meant to capture the python implementation work to chat with your References.
Some related discussion:
Chat: chat with your References
Action:
- User asks a question in the chat window
- Assumption: For now, we can assume the question is to all References. This might change in the future.
Input:
- text, question from the user (For now ... I could see the draft document being useful here).
Sidecar Response:
- json, single dict inclusive of the References used to answer
Example Response:
{
"answer": "I'm the answer to your question",
"sources": [
{
"source_filename": "source1.pdf"
},
{
"source_filename": "source2.pdf"
}
]
}
This issue is meant to capture the python implementation work to chat with your References.
Some related discussion:
Chat: chat with your References
Action:
Input:
Sidecar Response:
Example Response:
{ "answer": "I'm the answer to your question", "sources": [ { "source_filename": "source1.pdf" }, { "source_filename": "source2.pdf" } ] }