JSONKnowledgeBase 读取本地 JSON 文件,将其转换为向量嵌入,并加载到向量数据库中。

用法

本示例中使用本地 PgVector 数据库。请确保它正在运行

knowledge_base.py
from agno.knowledge.json import JSONKnowledgeBase
from agno.vectordb.pgvector import PgVector

knowledge_base = JSONKnowledgeBase(
    path="data/json",
    # 表名: ai.json_documents
    vector_db=PgVector(
        table_name="json_documents",
        db_url="postgresql+psycopg://ai:ai@localhost:5532/ai",
    ),
)

然后将 knowledge_baseAgent 一起使用:

agent.py
from agno.agent import Agent
from knowledge_base import knowledge_base

agent = Agent(
    knowledge=knowledge_base,
    search_knowledge=True,
)
agent.knowledge.load(recreate=False)

agent.print_response("Ask me about something from the knowledge base")

JSONKnowledgeBase 也支持异步加载。

pip install qdrant-client

本示例中使用本地 Qdrant 数据库。请确保它正在运行

async_knowledge_base.py
import asyncio
from pathlib import Path

from agno.agent import Agent
from agno.knowledge.json import JSONKnowledgeBase
from agno.vectordb.qdrant import Qdrant

COLLECTION_NAME = "json-reader"

vector_db = Qdrant(collection=COLLECTION_NAME, url="http://localhost:6333")

knowledge_base = JSONKnowledgeBase(
    path=Path("tmp/docs"),
    vector_db=vector_db,
    num_documents=5,  # 搜索时返回的文档数量
)

# 使用 knowledge_base 初始化 Agent
agent = Agent(
    knowledge=knowledge_base,
    search_knowledge=True,
)

if __name__ == "__main__":
    # 首次运行时注释掉此行
    asyncio.run(knowledge_base.aload(recreate=False))

    # 创建并使用 Agent
    asyncio.run(
        agent.aprint_response(
            "Ask anything from the json knowledge base", markdown=True
        )
    )

参数

参数类型默认值描述
pathUnion[str, Path]-指向 JSON 文件的路径。
可以指向单个 JSON 文件或 JSON 文件目录。
readerJSONReaderJSONReader()一个 JSONReader,用于将 JSON 文件转换为向量数据库的 Documents

JSONKnowledgeBaseAgentKnowledge 类的一个子类,可以访问相同的参数。

开发者资源