ask_ai_about_documents
Query document content using natural language to find specific information, extract insights, or get direct answers about policies, processes, or other details from your knowledge base.
Instructions
Queries document content using natural language questions.
Use this tool when you need to:
- Find specific information across multiple documents
- Get direct answers to questions about document content
- Extract insights from your knowledge base
- Answer questions like "What is our vacation policy?" or "How do we
onboard new clients?"
Args:
question: The natural language question to ask
collection_id: Optional collection to limit the search to
document_id: Optional document to limit the search to
Returns:
AI-generated answer based on document content with sources
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection_id | No | ||
document_id | No | ||
question | Yes |
Input Schema (JSON Schema)
{
"properties": {
"collection_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Collection Id"
},
"document_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Document Id"
},
"question": {
"title": "Question",
"type": "string"
}
},
"required": [
"question"
],
"title": "ask_ai_about_documentsArguments",
"type": "object"
}