get_docs
Search documentation for specific queries and libraries, including langchain, openai, and llama-index. Retrieve relevant text from the latest docs for streamlined reference.
Instructions
Search the latest docs for a given query and library. Supports langchain, openai, and llama-index.
Args: query: The query to search for (e.g. "Chroma DB") library: The library to search in (e.g. "langchain")
Returns: Text from the docs
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"
],
"title": "get_docsArguments",
"type": "object"
}