add main.py

This commit is contained in:
2026-06-04 09:25:14 +00:00
parent 71cba37459
commit 9064b46b34
+65 -49
View File
@@ -1,93 +1,109 @@
import os import os
import sys import asyncio
from pathlib import Path from pathlib import Path
from dotenv import load_dotenv
from langchain_openai import ChatOpenAI from langchain_openai import ChatOpenAI
from langchain_core.messages import HumanMessage
from langchain.tools import tool
from langchain_ollama import OllamaEmbeddings from langchain_ollama import OllamaEmbeddings
from langchain_chroma import Chroma from langchain_chroma import Chroma
from langchain_text_splitters import RecursiveCharacterTextSplitter from langchain_text_splitters import RecursiveCharacterTextSplitter
from langchain.tools import tool from langchain_tavily import TavilySearchResults
from langchain.agents import AgentExecutor, create_openai_tools_agent from deepagents import create_deep_agent
from langchain_community.tools.tavily import TavilySearchResults from deepagents.backends import FilesystemBackend, LocalShellBackend, CompositeBackend
# Load env variables # ---------- LLM ----------
load_dotenv()
# ---------- LLM and embeddings ----------
llm = ChatOpenAI( llm = ChatOpenAI(
model="openai/gpt-oss-20b:free", model="openai/gpt-oss-20b:free",
base_url="https://openrouter.ai/api/v1", base_url="https://openrouter.ai/api/v1",
api_key=os.getenv("OPENAI_API_KEY"), api_key=os.getenv("OPENAI_API_KEY"),
temperature=0.0, temperature=0.0,
) )
embeddings = OllamaEmbeddings(model="nomic-embed-text")
# ---------- Vectorstore ---------- # ---------- Backend ----------
backend = CompositeBackend([
LocalShellBackend(workspace_dir="./workspace"),
FilesystemBackend(),
])
# ---------- Vectorstore utilities ----------
PERSIST_DIR = Path("./chroma_db") PERSIST_DIR = Path("./chroma_db")
PERSIST_DIR.mkdir(parents=True, exist_ok=True) PERSIST_DIR.mkdir(parents=True, exist_ok=True)
vectorstore = Chroma(persist_directory=str(PERSIST_DIR), embedding_function=embeddings)
# Load documents if collection empty # Create or load Chroma vectorstore
if not vectorstore.get_collection().count(): vectorstore = Chroma(
docs_dir = Path("./documents") persist_directory=str(PERSIST_DIR),
if docs_dir.exists(): embedding_function=OllamaEmbeddings(model="nomic-embed-text"),
)
# Load documents from a directory into the vectorstore
def load_documents(directory: str, vectorstore):
docs = []
splitter = RecursiveCharacterTextSplitter(chunk_size=1000, chunk_overlap=200) splitter = RecursiveCharacterTextSplitter(chunk_size=1000, chunk_overlap=200)
for file in docs_dir.glob("**/*.*"): for file_path in Path(directory).glob("**/*"):
if file.suffix.lower() in {".txt", ".md"}: if file_path.suffix.lower() in {".txt", ".md"}:
text = file.read_text(encoding="utf-8") text = file_path.read_text(encoding="utf-8")
chunks = splitter.split_text(text) docs.extend(splitter.split_text(text))
vectorstore.add_texts(chunks, ids=[f"{file.name}_{i}" for i in range(len(chunks))]) # Convert to LangChain Documents
from langchain_core.documents import Document
documents = [Document(page_content=chunk) for chunk in docs]
vectorstore.add_documents(documents)
vectorstore.persist() vectorstore.persist()
# Load documents once at startup (if not already loaded)
if not any(PERSIST_DIR.iterdir()):
load_documents("./documents", vectorstore)
# ---------- Tools ---------- # ---------- Tools ----------
@tool("search_local_kb") @tool
def search_local_kb(query: str, top_k: int = 3) -> str: def search_local_kb(query: str, top_k: int = 3) -> str:
"""Semantic search in local ChromaDB knowledge base.""" """Semantic search in the local ChromaDB knowledge base."""
retriever = vectorstore.as_retriever(search_kwargs={"k": top_k}) retriever = vectorstore.as_retriever(search_kwargs={"k": top_k})
docs = retriever.get_relevant_documents(query) docs = retriever.get_relevant_documents(query)
if not docs: if not docs:
return "No relevant documents found in local KB." return "No relevant documents found in local KB."
return "\n---\n".join(doc.page_content for doc in docs) return "\n---\n".join(doc.page_content for doc in docs)
@tool("web_search") @tool
def web_search(query: str) -> str: def web_search(query: str) -> str:
"""Web search using Tavily.""" """Web search using Tavily."""
tavily = TavilySearchResults(max_results=3) tavily = TavilySearchResults(api_key=os.getenv("TAVILY_API_KEY"))
results = tavily.run(query) results = tavily.run(query)
if not results: if not results:
return "No web results found." return "No web results found."
return "\n---\n".join(f"{r['title']}\n{r['url']}\n{r.get('content', '')}" for r in results) return "\n---\n".join(f"{r['title']}\n{r['url']}\n{r.get('content', '')}" for r in results)
# ---------- Agent ---------- # ---------- Agent ----------
SYSTEM_PROMPT = ( agent = create_deep_agent(
"You are an AI assistant. For questions about local documents, use the tool 'search_local_kb'. " model=llm,
"For up-to-date information or news, use 'web_search'. Always indicate the source in your answer." tools=[search_local_kb, web_search],
backend=backend,
system_prompt=(
"You are an AI assistant that answers user questions.\n"
"If the question is about information that should be in the local knowledge base,\n"
"use the search_local_kb tool.\n"
"If the question requires uptodate information from the web,\n"
"use the web_search tool.\n"
"Always indicate the source of the answer in the format:\n"
"[Source: chromadb] or [Source: tavily] before the answer."
),
) )
tools = [search_local_kb, web_search]
agent = create_openai_tools_agent(llm, tools, system_message=SYSTEM_PROMPT)
agent_executor = AgentExecutor(agent=agent, tools=tools, verbose=True)
# ---------- CLI ---------- # ---------- CLI ----------
async def main():
def main():
print("RAG Agent with ChromaDB and Tavily. Type 'exit' to quit.") print("RAG Agent with ChromaDB and Tavily. Type 'exit' to quit.")
while True: while True:
try: user_input = input("\nЗапрос: ")
query = input("\nЗапрос: ") if user_input.lower() in {"exit", "quit"}:
except (EOFError, KeyboardInterrupt): print("Goodbye!")
print("\nBye!")
break break
if query.strip().lower() in {"exit", "quit"}: result = await agent.ainvoke(
print("Bye!") {"messages": [HumanMessage(content=user_input)]},
break {"configurable": {"thread_id": "session-1"}},
result = agent_executor.invoke({"input": query}) )
# The tool name is stored in the tool_calls field of the result # The agent returns a list of messages; the last is the assistant reply
tool_name = result.get("tool_calls", [{}])[0].get("name", "unknown") reply = result["messages"][-1].content
source = "tavily" if tool_name == "web_search" else "chromadb" print(f"\n{reply}")
print(f"\n[{'Web Search' if source=='tavily' else 'Local KB'}] {result.get('output', '')}\n")
print(f"Источник: {source}\n")
if __name__ == "__main__": if __name__ == "__main__":
main() asyncio.run(main())