File size: 15,622 Bytes
f803428 3e2e25e f803428 ce7bccd bf6ba43 7d2499b ce7bccd bf6ba43 3e2e25e ce7bccd bf6ba43 3e2e25e bf6ba43 ce7bccd f803428 3e2e25e ce7bccd 3e2e25e f803428 ce7bccd 3e2e25e ce7bccd f803428 ce7bccd 3e2e25e ce7bccd 7a821b7 3e2e25e ce7bccd 2af37cd ce7bccd 2af37cd ce7bccd 3e2e25e 2af37cd ce7bccd 2af37cd ce7bccd 3e2e25e 7a821b7 ce7bccd 7a821b7 ce7bccd 2af37cd ce7bccd 3e2e25e 2af37cd ce7bccd 7a821b7 ce7bccd bf6ba43 3e2e25e bf6ba43 ce7bccd bf6ba43 ce7bccd bf6ba43 ce7bccd bf6ba43 ce7bccd 7a821b7 ce7bccd bf6ba43 3e2e25e bf6ba43 f803428 ce7bccd f803428 7d2499b ce7bccd f803428 3e2e25e ce7bccd 7d2499b f803428 ce7bccd bf6ba43 3e2e25e 7a821b7 ce7bccd 3e2e25e ce7bccd f803428 ce7bccd f803428 ce7bccd 3e2e25e 7a821b7 ce7bccd 7a821b7 ce7bccd 8c51323 ce7bccd 8c51323 ce7bccd 8c51323 ce7bccd 3e2e25e ce7bccd 3e2e25e ce7bccd bf6ba43 ce7bccd 3e2e25e ce7bccd bf6ba43 ce7bccd bf6ba43 ce7bccd f803428 bf6ba43 ce7bccd 8c51323 ce7bccd bf6ba43 3e2e25e bf6ba43 7a821b7 bf6ba43 ce7bccd 7a821b7 ce7bccd 7a821b7 ce7bccd 7a821b7 bf6ba43 ce7bccd bf6ba43 3e2e25e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 | # Requirements:
# pip install langchain-huggingface langchain-google-genai langchain-groq langgraph langchain-community python-dotenv chromadb langchain-chroma sentence-transformers
import os
import math
from typing import TypedDict, Optional, List, Any
from langgraph.graph import StateGraph, START, END
from langgraph.prebuilt import ToolNode
from langchain_core.messages import AIMessage, HumanMessage, ToolMessage
from langchain_core.tools import tool
from langchain_community.tools.tavily_search import TavilySearchResults
from langchain_community.document_loaders import WikipediaLoader
from langchain_community.tools.arxiv.tool import ArxivQueryRun
from langchain_community.utilities.arxiv import ArxivAPIWrapper
from langchain_google_genai import ChatGoogleGenerativeAI
from langchain_groq import ChatGroq
from langchain_chroma import Chroma
from langchain_huggingface import HuggingFaceEmbeddings
from langchain_core.documents import Document
from langchain_text_splitters import RecursiveCharacterTextSplitter
from pydantic import SecretStr
from dotenv import load_dotenv
import chromadb
from chromadb.config import Settings
load_dotenv()
class AgentState(TypedDict):
messages: List[Any]
# Global instances
_llm = None
_vectorstore = None
_embeddings = None
def get_embeddings():
"""Get or create embeddings instance."""
global _embeddings
if _embeddings is None:
_embeddings = HuggingFaceEmbeddings(
model_name="sentence-transformers/all-MiniLM-L6-v2",
model_kwargs={'device': 'cpu'}
)
return _embeddings
def get_vectorstore():
"""Get or create vector store instance."""
global _vectorstore
if _vectorstore is None:
embeddings = get_embeddings()
# Create ChromaDB client with persistent storage
client = chromadb.PersistentClient(
path="./chroma_db",
settings=Settings(anonymized_telemetry=False)
)
_vectorstore = Chroma(
client=client,
collection_name="agent_knowledge",
embedding_function=embeddings,
)
return _vectorstore
def get_llm():
"""Get or create LLM instance - prefer Groq if available, fallback to Gemini."""
print("Getting LLM")
global _llm
if _llm is None:
groq_api_key = os.getenv("GROQ_API_KEY")
if groq_api_key:
_llm = ChatGroq(model="qwen-qwq-32b", temperature=0, api_key=SecretStr(groq_api_key))
else:
_llm = ChatGoogleGenerativeAI(
model="gemini-2.0-flash",
temperature=0,
google_api_key=os.getenv("GOOGLE_API_KEY")
)
return _llm
def add_to_vectorstore(content: str, source: str, metadata: dict = {}):
"""Add content to the vector store."""
try:
vectorstore = get_vectorstore()
# Split text into chunks
text_splitter = RecursiveCharacterTextSplitter(
chunk_size=500,
chunk_overlap=50,
length_function=len,
)
chunks = text_splitter.split_text(content)
# Create documents
documents = []
for i, chunk in enumerate(chunks):
doc_metadata = {
"source": source,
"chunk_id": i,
**(metadata or {})
}
documents.append(Document(page_content=chunk, metadata=doc_metadata))
# Add to vector store
vectorstore.add_documents(documents)
print(f"Added {len(documents)} chunks to vector store from {source}")
except Exception as e:
print(f"Error adding to vector store: {e}")
@tool
def vector_search(query: str) -> str:
"""Search the vector database for relevant stored information.
Args:
query: The query to search for in stored knowledge.
Returns:
A string containing relevant information from the vector database.
"""
print("Vector search tool called")
try:
vectorstore = get_vectorstore()
# Search for relevant documents
results = vectorstore.similarity_search(query, k=3)
if not results:
return "No relevant information found in stored knowledge."
# Format results
formatted_results = []
for i, doc in enumerate(results, 1):
source = doc.metadata.get('source', 'Unknown')
content = doc.page_content[:400] # Limit content
formatted_results.append(f"{i}. Source: {source}\nContent: {content}")
return f"Relevant stored information for '{query}':\n\n" + "\n\n".join(formatted_results)
except Exception as e:
return f"Vector search error: {e}"
@tool
def web_search(query: str) -> str:
"""Search the web for current information, news, and general queries.
Args:
query: The query to search the web for.
Returns:
A string containing the search results.
"""
print("Web search tool called")
try:
tavily = TavilySearchResults(api_key=os.getenv("TAVILY_API_KEY"), max_results=3)
docs = tavily.invoke(query)
if not docs:
return "No search results found."
results = []
for i, doc in enumerate(docs[:3], 1):
content = doc.get('content', '')[:600] # Limit content length
title = doc.get('title', 'No title')
url = doc.get('url', '')
results.append(f"{i}. {title}\nURL: {url}\nContent: {content}")
# Add to vector store for future reference
add_to_vectorstore(
content=content,
source=f"web_search_{url}",
metadata={"title": title, "url": url, "query": query}
)
return f"Search results for '{query}':\n\n" + "\n\n".join(results)
except Exception as e:
return f"Search error: {e}"
@tool
def wikipedia_search(query: str) -> str:
"""Search Wikipedia for encyclopedic information about people, places, events, etc.
Args:
query: The query to search Wikipedia for.
Returns:
A string containing the search results.
"""
print("Wikipedia tool called")
try:
loader = WikipediaLoader(query=query, load_max_docs=2)
docs = loader.load()
if not docs:
return f"No Wikipedia articles found for: {query}"
results = []
for doc in docs:
title = doc.metadata.get('title', 'Unknown')
content = doc.page_content[:800] # Limit content
results.append(f"Wikipedia Article: {title}\nContent: {content}")
# Add to vector store for future reference
add_to_vectorstore(
content=doc.page_content,
source=f"wikipedia_{title}",
metadata={"title": title, "query": query}
)
return f"Wikipedia results for '{query}':\n\n" + "\n\n---\n\n".join(results)
except Exception as e:
return f"Wikipedia search error: {e}"
@tool
def calculator(expression: str) -> str:
"""Perform mathematical calculations. Supports basic operations and math functions.
Args:
expression: The mathematical expression to evaluate.
Returns:
A string containing the calculation result.
"""
print("Calculator tool called")
try:
# Safe evaluation with math functions
safe_dict = {
"__builtins__": {},
"abs": abs, "round": round, "min": min, "max": max, "sum": sum, "pow": pow,
"sin": math.sin, "cos": math.cos, "tan": math.tan, "sqrt": math.sqrt,
"log": math.log, "log10": math.log10, "exp": math.exp, "pi": math.pi, "e": math.e,
"floor": math.floor, "ceil": math.ceil
}
result = eval(expression, safe_dict)
return f"Calculation result: {result}"
except Exception as e:
return f"Calculation error: {e}"
@tool
def arxiv_search(query: str) -> str:
"""Search ArXiv for academic papers and research articles.
Args:
query: The query to search ArXiv for.
Returns:
A string containing the search results.
"""
print("ArXiv tool called")
try:
arxiv_wrapper = ArxivAPIWrapper(
arxiv_search=query,
top_k_results=2,
load_max_docs=2,
doc_content_chars_max=800,
arxiv_exceptions=Any
)
arxiv_tool = ArxivQueryRun(api_wrapper=arxiv_wrapper)
result = arxiv_tool.run(query)
if not result or result.strip() == "":
return f"No ArXiv papers found for: {query}"
else:
# Add to vector store for future reference
add_to_vectorstore(
content=result,
source=f"arxiv_{query}",
metadata={"query": query}
)
return f"ArXiv results for '{query}':\n\n{result}"
except Exception as e:
return f"ArXiv search error: {e}"
# Define all tools (vector_search is first to be checked before external searches)
tools = [vector_search, web_search, wikipedia_search, calculator, arxiv_search]
def model_node(state: AgentState) -> AgentState:
"""Main model node that processes queries and calls tools when needed.
Args:
state: The current state of the agent.
Returns:
The updated state of the agent.
"""
print("Model node called")
messages = state["messages"]
# Get LLM with tools bound
llm = get_llm()
llm_with_tools = llm.bind_tools(tools)
# Add system message if not present
if not messages or not isinstance(messages[0], AIMessage):
system_message = AIMessage(content="""You are a helpful assistant with access to various tools and a knowledge base.
Search Strategy:
1. ALWAYS start with vector_search to check if relevant information is already stored
2. If vector_search doesn't provide sufficient information, then use external tools
3. Use web_search for current events, news, and recent information
4. Use wikipedia_search for encyclopedic information
5. Use arxiv_search for academic papers and research
6. Use calculator for mathematical operations
Your final answer must strictly follow this format:
FINAL ANSWER: [ANSWER]
Only write the answer in that exact format. Do not explain anything. Do not include any other text.
Examples:
- FINAL ANSWER: FunkMonk
- FINAL ANSWER: Paris
- FINAL ANSWER: 128
If you do not follow this format exactly, your response will be considered incorrect.""")
messages = [system_message] + messages
try:
response = llm_with_tools.invoke(messages)
return {"messages": messages + [response]}
except Exception as e:
error_msg = AIMessage(content=f"Error: {e}")
return {"messages": messages + [error_msg]}
def should_continue(state: AgentState) -> str:
"""Determine if we should continue with tool calls or end.
Args:
state: The current state of the agent.
Returns:
A string indicating whether to continue with tool calls or end.
"""
print("Should continue called")
messages = state["messages"]
last_message = messages[-1]
# If the last message has tool calls, go to tools
if hasattr(last_message, 'tool_calls') and last_message.tool_calls:
return "tools"
# Otherwise, we're done
return "end"
def build_graph():
"""Build and compile the agent graph."""
print("Building graph")
# Create tool node
tool_node = ToolNode(tools)
# Create graph
builder = StateGraph(AgentState)
# Add nodes
builder.add_node("agent", model_node)
builder.add_node("tools", tool_node)
# Add edges
builder.add_edge(START, "agent")
# Conditional edge from agent
builder.add_conditional_edges(
"agent",
should_continue,
{
"tools": "tools",
"end": END
}
)
# Edge from tools back to agent
builder.add_edge("tools", "agent")
return builder.compile()
def run_agent(query: str) -> str:
"""Run the agent with a query and return the final answer.
Args:
query: The query to run the agent with.
Returns:
A string containing the final answer.
"""
print("Running agent")
graph = build_graph()
initial_state = {
"messages": [HumanMessage(content=query)]
}
try:
# Run the graph
final_state = graph.invoke(initial_state)
# Extract the final answer from the last AI message
messages = final_state["messages"]
for message in reversed(messages):
if isinstance(message, AIMessage) and not hasattr(message, 'tool_calls'):
return str(message.content)
elif isinstance(message, AIMessage) and hasattr(message, 'tool_calls') and not message.tool_calls:
return str(message.content)
return "No answer generated"
except Exception as e:
return f"Error: {e}"
def run_agent_with_history(query: str) -> tuple[str, List[Any]]:
"""Run the agent and return both the answer and the full message history.
Args:
query: The query to run the agent with.
Returns:
A tuple containing the final answer and the full message history.
"""
print("Running agent with history")
graph = build_graph()
initial_state = {
"messages": [HumanMessage(content=query)]
}
try:
final_state = graph.invoke(initial_state)
# Extract the final answer
messages = final_state["messages"]
final_answer = "No answer generated"
for message in reversed(messages):
if isinstance(message, AIMessage) and not (hasattr(message, 'tool_calls') and message.tool_calls):
final_answer = message.content
break
return str(final_answer), messages
except Exception as e:
return f"Error: {e}", []
# Utility functions for vector store management
def add_knowledge_from_file(file_path: str):
"""Add knowledge from a text file to the vector store."""
try:
with open(file_path, 'r', encoding='utf-8') as file:
content = file.read()
add_to_vectorstore(
content=content,
source=f"file_{os.path.basename(file_path)}",
metadata={"file_path": file_path}
)
print(f"Successfully added knowledge from {file_path}")
except Exception as e:
print(f"Error adding knowledge from file: {e}")
def clear_vectorstore():
"""Clear all data from the vector store."""
try:
vectorstore = get_vectorstore()
vectorstore.delete_collection()
print("Vector store cleared successfully")
# Reset global variable to force recreation
global _vectorstore
_vectorstore = None
except Exception as e:
print(f"Error clearing vector store: {e}")
def get_vectorstore_stats():
"""Get statistics about the vector store."""
try:
vectorstore = get_vectorstore()
collection = vectorstore._collection
count = collection.count()
return f"Vector store contains {count} documents"
except Exception as e:
return f"Error getting vector store stats: {e}"
|