add tools.py

This commit is contained in:
2026-05-28 09:27:32 +00:00
parent 91a4385e03
commit 041b6358cd
+19 -24
View File
@@ -1,38 +1,33 @@
""" """
Tools for the RAG agent. RAG tools for the agent.
Two tools: search_knowledge_base and add_to_knowledge_base. search_knowledge_base and add_to_knowledge_base are decorated with @tool.
""" """
import os
from typing import List, Dict from typing import List, Dict
from langchain.tools import tool from langchain.tools import tool
from vector_store import vector_store from vector_store import vector_store
from chunker import split_text from chunker import split_text
@tool("search_knowledge_base") @tool("Search knowledge base")
def search_knowledge_base(query: str, max_results: int = 5) -> str: def search_knowledge_base(query: str, max_results: int = 5) -> str:
"""Semantic search in the knowledge base. """Semantic search in the vector store."""
results = vector_store.similarity_search(query, k=max_results)
Returns a formatted string of results. if not results:
"""
hits = vector_store.search(query, k=max_results)
if not hits:
return "No relevant documents found." return "No relevant documents found."
lines: List[str] = [] out_lines = []
for i, hit in enumerate(hits, 1): for i, res in enumerate(results, 1):
title = hit["metadata"].get("title", f"doc_{hit['id']}") out_lines.append(f"{i}. {res['content'][:200]}... (distance: {res['distance']:.3f})")
snippet = hit["document"][:200] return "\n".join(out_lines)
lines.append(f"{i}. {title}: {snippet}...")
return "\n".join(lines)
@tool("add_to_knowledge_base") @tool("Add document to knowledge base")
def add_to_knowledge_base(content: str, title: str = "document") -> str: def add_to_knowledge_base(content: str, title: str = "document") -> str:
"""Add a document to the knowledge base. """Adds a text chunk to the vector store."""
# Split content into chunks
Splits content into chunks and stores each with metadata.
"""
chunks = split_text(content) chunks = split_text(content)
docs = []
for idx, chunk in enumerate(chunks): for idx, chunk in enumerate(chunks):
doc_id = f"{title}_{idx}" docs.append({"content": chunk, "metadata": {"title": title, "chunk_index": idx}})
vector_store.add_document(doc_id=doc_id, text=chunk, metadata={"title": title}) vector_store.add_documents(docs)
return f"Added {len(chunks)} chunks from '{title}'." return f"Added {len(chunks)} chunks to the knowledge base."