get_docs
Search and retrieve summarized documentation for AI and Python libraries including LangChain, OpenAI, LlamaIndex, and uv. Get relevant text excerpts with source links for specific queries.
Instructions
Search the latest docs for a given query and library. Supports langchain, openai, llama-index and uv.
Args: query: The query to search for (e.g. "Publish a package with UV") library: The library to search in (e.g. "uv")
Returns: Summarized text from the docs with source links.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
library | Yes | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"library": {
"title": "Library",
"type": "string"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query",
"library"
],
"type": "object"
}