get_docs
Search and retrieve the latest documentation for specific queries and libraries. Supports langchain, llama-index, autogen, agno, openai-agents-sdk, mcp-doc, camel-ai, and crew-ai. Input query and library to extract relevant text.
Instructions
搜索给定查询和库的最新文档。
支持 langchain、llama-index、autogen、agno、openai-agents-sdk、mcp-doc、camel-ai 和 crew-ai。
参数:
query: 要搜索的查询 (例如 "React Agent")
library: 要搜索的库 (例如 "agno")
返回:
文档中的文本
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"
}