ask_docs
Ask questions about documentation and receive AI-generated answers with sources. Provide a question, optional context documents, and user ID for rate limiting to get precise insights.
Instructions
Answer questions about documentation using AI
Args:
question: The question to answer
context_docs: Optional list of document paths to use as context
max_context_length: Maximum characters of context to include
user_id: Optional user identifier for rate limiting
Returns:
AI-generated answer with sources
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context_docs | No | ||
max_context_length | No | ||
question | Yes | ||
user_id | No |
Input Schema (JSON Schema)
{
"properties": {
"context_docs": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Context Docs"
},
"max_context_length": {
"default": 4000,
"title": "Max Context Length",
"type": "integer"
},
"question": {
"title": "Question",
"type": "string"
},
"user_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "User Id"
}
},
"required": [
"question"
],
"title": "ask_docsArguments",
"type": "object"
}