File size: 16,255 Bytes
f844f16 |
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 |
"""
Code Agent - Computational tasks and code execution
The Code Agent is responsible for:
1. Performing mathematical calculations
2. Executing Python code for data analysis
3. Processing numerical data and computations
4. Returning structured computational results
"""
import os
import sys
import io
import contextlib
from typing import Dict, Any, List
from langchain_core.messages import BaseMessage, HumanMessage, SystemMessage, AIMessage
from langgraph.types import Command
from langchain_groq import ChatGroq
from langchain_core.tools import Tool
from observability import agent_span, tool_span
from dotenv import load_dotenv
# Import calculator tools from the existing tools.py
from tools import get_calculator_tool, get_hub_stats_tool
load_dotenv("env.local")
def create_code_tools() -> List[Tool]:
"""Create LangChain-compatible computational tools"""
tools = []
# Mathematical calculator tools
def multiply_func(a: float, b: float) -> str:
"""Multiply two numbers"""
try:
result = a * b
return f"{a} × {b} = {result}"
except Exception as e:
return f"Error: {str(e)}"
def add_func(a: float, b: float) -> str:
"""Add two numbers"""
try:
result = a + b
return f"{a} + {b} = {result}"
except Exception as e:
return f"Error: {str(e)}"
def subtract_func(a: float, b: float) -> str:
"""Subtract two numbers"""
try:
result = a - b
return f"{a} - {b} = {result}"
except Exception as e:
return f"Error: {str(e)}"
def divide_func(a: float, b: float) -> str:
"""Divide two numbers"""
try:
if b == 0:
return "Error: Cannot divide by zero"
result = a / b
return f"{a} ÷ {b} = {result}"
except Exception as e:
return f"Error: {str(e)}"
def modulus_func(a: int, b: int) -> str:
"""Get the modulus of two numbers"""
try:
if b == 0:
return "Error: Cannot modulo by zero"
result = a % b
return f"{a} mod {b} = {result}"
except Exception as e:
return f"Error: {str(e)}"
# Create calculator tools
calc_tools = [
Tool(name="multiply", description="Multiply two numbers. Use format: multiply(a, b)", func=lambda input_str: multiply_func(*map(float, input_str.split(',')))),
Tool(name="add", description="Add two numbers. Use format: add(a, b)", func=lambda input_str: add_func(*map(float, input_str.split(',')))),
Tool(name="subtract", description="Subtract two numbers. Use format: subtract(a, b)", func=lambda input_str: subtract_func(*map(float, input_str.split(',')))),
Tool(name="divide", description="Divide two numbers. Use format: divide(a, b)", func=lambda input_str: divide_func(*map(float, input_str.split(',')))),
Tool(name="modulus", description="Get modulus of two integers. Use format: modulus(a, b)", func=lambda input_str: modulus_func(*map(int, input_str.split(',')))),
]
tools.extend(calc_tools)
print(f"✅ Added {len(calc_tools)} calculator tools")
# Hub stats tool
try:
from tools import get_hub_stats
def hub_stats_func(author: str) -> str:
"""Get Hugging Face Hub statistics for an author"""
try:
return get_hub_stats(author)
except Exception as e:
return f"Hub stats error: {str(e)}"
hub_tool = Tool(
name="hub_stats",
description="Get statistics for Hugging Face Hub models by author",
func=hub_stats_func
)
tools.append(hub_tool)
print("✅ Added Hub stats tool")
except Exception as e:
print(f"⚠️ Could not load Hub stats tool: {e}")
# Python execution tool
python_tool = create_python_execution_tool()
tools.append(python_tool)
print("✅ Added Python execution tool")
print(f"🔧 Code Agent loaded {len(tools)} tools")
return tools
def create_python_execution_tool() -> Tool:
"""Create a tool for executing Python code safely"""
def execute_python_code(code: str) -> str:
"""
Execute Python code in a controlled environment.
Args:
code: Python code to execute
Returns:
String containing the output or error message
"""
# Create a string buffer to capture output
output_buffer = io.StringIO()
error_buffer = io.StringIO()
# Prepare a safe execution environment
safe_globals = {
'__builtins__': {
'print': lambda *args, **kwargs: print(*args, file=output_buffer, **kwargs),
'len': len,
'str': str,
'int': int,
'float': float,
'list': list,
'dict': dict,
'set': set,
'tuple': tuple,
'range': range,
'sum': sum,
'max': max,
'min': min,
'abs': abs,
'round': round,
'sorted': sorted,
'enumerate': enumerate,
'zip': zip,
'map': map,
'filter': filter,
}
}
# Allow common safe modules
try:
import math
import statistics
import datetime
import json
import re
safe_globals.update({
'math': math,
'statistics': statistics,
'datetime': datetime,
'json': json,
're': re,
})
except ImportError:
pass
try:
# Execute the code
with contextlib.redirect_stdout(output_buffer), \
contextlib.redirect_stderr(error_buffer):
exec(code, safe_globals)
# Get the output
output = output_buffer.getvalue()
error = error_buffer.getvalue()
if error:
return f"Error: {error}"
elif output:
return output.strip()
else:
return "Code executed successfully (no output)"
except Exception as e:
return f"Execution error: {str(e)}"
finally:
output_buffer.close()
error_buffer.close()
return Tool(
name="python_execution",
description="Execute Python code for calculations and data processing. Use for complex computations, data analysis, or when calculator tools are insufficient.",
func=execute_python_code
)
def load_code_prompt() -> str:
"""Load the code execution prompt"""
try:
with open("archive/prompts/execution_prompt.txt", "r") as f:
return f.read()
except FileNotFoundError:
return """
You are a computational specialist focused on accurate calculations and code execution.
Your goals:
1. Perform mathematical calculations accurately
2. Write and execute Python code for complex computations
3. Process data and perform analysis as needed
4. Provide clear, numerical results
When handling computational tasks:
- Use calculator tools for basic arithmetic operations
- Use Python execution for complex calculations, data processing, or multi-step computations
- Show your work and intermediate steps
- Verify results when possible
- Handle edge cases and potential errors
Available tools:
- Calculator tools: add, subtract, multiply, divide, modulus
- Python execution: for complex computations and data analysis
- Hub stats tool: for Hugging Face model information
Format your response as:
### Computational Analysis
[Description of the approach]
### Calculations
[Step-by-step calculations or code]
### Results
[Final numerical results or outputs]
"""
def code_agent(state: Dict[str, Any]) -> Command:
"""
Code Agent node that handles computational tasks and code execution.
Returns Command with computational results appended to code_outputs.
"""
print("🧮 Code Agent: Processing computational tasks...")
try:
# Get code execution prompt
code_prompt = load_code_prompt()
# Initialize LLM with tools
llm = ChatGroq(
model="llama-3.3-70b-versatile",
temperature=0.1, # Low temperature for accuracy in calculations
max_tokens=2048
)
# Get computational tools
tools = create_code_tools()
# Bind tools to LLM
llm_with_tools = llm.bind_tools(tools)
# Create agent span for tracing
with agent_span(
"code",
metadata={
"tools_available": len(tools),
"research_context_length": len(state.get("research_notes", "")),
"user_id": state.get("user_id", "unknown"),
"session_id": state.get("session_id", "unknown")
}
) as span:
# Extract user query and research context
messages = state.get("messages", [])
user_query = ""
for msg in messages:
if isinstance(msg, HumanMessage):
user_query = msg.content
break
research_notes = state.get("research_notes", "")
# Build computational request
code_request = f"""
Please analyze the following question and perform any necessary calculations or code execution:
Question: {user_query}
Research Context:
{research_notes}
Current computational work: {len(state.get('code_outputs', ''))} characters already completed
Instructions:
1. Identify any computational or mathematical aspects of the question
2. Use appropriate tools for calculations or code execution
3. Show your work and intermediate steps
4. Provide clear, accurate results
5. If no computation is needed, state that clearly
Please perform all necessary calculations to help answer this question.
"""
# Create messages for code execution
code_messages = [
SystemMessage(content=code_prompt),
HumanMessage(content=code_request)
]
# Get computational response
response = llm_with_tools.invoke(code_messages)
# Process the response - handle both tool calls and direct responses
computation_results = []
# Check if the LLM wants to use tools
if hasattr(response, 'tool_calls') and response.tool_calls:
print(f"🛠️ Executing {len(response.tool_calls)} computational operations")
# Execute tool calls and collect results
for tool_call in response.tool_calls:
try:
# Find the tool by name
tool = next((t for t in tools if t.name == tool_call['name']), None)
if tool:
# Handle different argument formats
args = tool_call.get('args', {})
if isinstance(args, dict):
# Convert dict args to string for simple tools
if len(args) == 1:
arg_value = list(args.values())[0]
else:
arg_value = ','.join(str(v) for v in args.values())
else:
arg_value = str(args)
result = tool.func(arg_value)
computation_results.append(f"**{tool.name}**: {result}")
else:
computation_results.append(f"**{tool_call['name']}**: Tool not found")
except Exception as e:
print(f"⚠️ Tool {tool_call.get('name', 'unknown')} failed: {e}")
computation_results.append(f"**{tool_call.get('name', 'unknown')}**: Error - {str(e)}")
# Compile computational results
if computation_results:
computational_findings = "\n\n".join(computation_results)
else:
# No tools used or tool calls failed, analyze if computation is needed
computational_findings = response.content if hasattr(response, 'content') else str(response)
# If the response looks like it should have used tools but didn't, try direct calculation
if any(op in user_query.lower() for op in ['+', '-', '*', '/', 'calculate', 'compute', 'multiply', 'add', 'subtract', 'divide']):
print("🔧 Attempting direct calculation...")
# Try to extract and solve simple mathematical expressions
import re
# Look for simple math expressions
math_patterns = [
r'(\d+)\s*\+\s*(\d+)', # addition
r'(\d+)\s*\*\s*(\d+)', # multiplication
r'(\d+)\s*-\s*(\d+)', # subtraction
r'(\d+)\s*/\s*(\d+)', # division
]
for pattern in math_patterns:
matches = re.findall(pattern, user_query)
if matches:
for match in matches:
a, b = int(match[0]), int(match[1])
if '+' in user_query:
result = a + b
computational_findings += f"\n\nDirect calculation: {a} + {b} = {result}"
elif '*' in user_query:
result = a * b
computational_findings += f"\n\nDirect calculation: {a} × {b} = {result}"
elif '-' in user_query:
result = a - b
computational_findings += f"\n\nDirect calculation: {a} - {b} = {result}"
elif '/' in user_query:
result = a / b
computational_findings += f"\n\nDirect calculation: {a} ÷ {b} = {result}"
break
# Format computational results
formatted_results = f"""
### Computational Analysis {state.get('loop_counter', 0) + 1}
{computational_findings}
---
"""
print(f"🧮 Code Agent: Generated {len(formatted_results)} characters of computational results")
# Update span with results if available
if span:
span.update_trace(metadata={
"computation_length": len(formatted_results),
"results_preview": formatted_results[:300] + "..."
})
# Return command to go back to lead agent
return Command(
goto="lead",
update={
"code_outputs": state.get("code_outputs", "") + formatted_results
}
)
except Exception as e:
print(f"❌ Code Agent Error: {e}")
# Return with error information
error_result = f"""
### Computational Error
An error occurred during code execution: {str(e)}
"""
return Command(
goto="lead",
update={
"code_outputs": state.get("code_outputs", "") + error_result
}
) |