Ask Anything
Once your files are uploaded, you can start asking questions. The chat panel accepts natural language prompts and responds using the content embedded in your workspace.
You don’t need to refer to file names or point to specific pages. Xio will automatically search through all relevant content, extract the most useful sections, and pass them to the LLM for a response.
Example prompts:
"Summarize the main points in the uploaded report"
"What’s the termination clause in this agreement?"
"List all dates mentioned in the document"
You can ask follow-up questions without needing to re-explain. The chat maintains session context as long as the window remains open.
To chat via API:
bashCopyEditcurl -X POST http://localhost:3001/api/chat \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "Summarize the PDF",
"workspace": "default"
}'
Answers are generated based on embeddings, so results improve with well-structured source material and clean text.
Last updated