agent-knowledge
Delete Document
Delete a specific document from the knowledge base.
This will:
- Remove the document file
- Delete all associated chunks
- Update the knowledge base index
Warning: This action is irreversible.
DELETE
Delete Document
Documentation Index
Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt
Use this file to discover all available pages before exploring further.
Previous
Chat With AgentSend a text message to an agent and get a response.
This endpoint allows REST API-based interactions with agents,
useful for:
- Web chat interfaces
- API integrations
- Testing agent behavior
- Non-voice applications
Example:
```json
{
"query": "What is your refund policy?",
"conversation_id": "conv-123", // Optional, for follow-up
"top_k": 5
}
```
Response:
```json
{
"response": "Our refund policy allows...",
"payload": null,
"selected_tool": null,
"conversation_id": "conv-123",
"trace_id": "trace-abc",
"execution_time_ms": 850,
"versions": {"kb_v": "1.0", "policy_v": "1.0", "tools_v": "1.0"}
}
```
Next
Delete Document