File size: 21,719 Bytes
dc893fb |
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 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 |
"""Core Agent implementation."""
import asyncio
import json
from pathlib import Path
from time import perf_counter
from typing import Optional
import tiktoken
from .llm import LLMClient
from .logger import AgentLogger
from .schema import Message
from .tools.base import Tool, ToolResult
from .utils import calculate_display_width
# ANSI color codes
class Colors:
"""Terminal color definitions"""
RESET = "\033[0m"
BOLD = "\033[1m"
DIM = "\033[2m"
# Foreground colors
RED = "\033[31m"
GREEN = "\033[32m"
YELLOW = "\033[33m"
BLUE = "\033[34m"
MAGENTA = "\033[35m"
CYAN = "\033[36m"
# Bright colors
BRIGHT_BLACK = "\033[90m"
BRIGHT_RED = "\033[91m"
BRIGHT_GREEN = "\033[92m"
BRIGHT_YELLOW = "\033[93m"
BRIGHT_BLUE = "\033[94m"
BRIGHT_MAGENTA = "\033[95m"
BRIGHT_CYAN = "\033[96m"
BRIGHT_WHITE = "\033[97m"
class Agent:
"""Single agent with basic tools and MCP support."""
def __init__(
self,
llm_client: LLMClient,
system_prompt: str,
tools: list[Tool],
max_steps: int = 50,
workspace_dir: str = "./workspace",
token_limit: int = 80000, # Summary triggered when tokens exceed this value
):
self.llm = llm_client
self.tools = {tool.name: tool for tool in tools}
self.max_steps = max_steps
self.token_limit = token_limit
self.workspace_dir = Path(workspace_dir)
# Cancellation event for interrupting agent execution (set externally, e.g., by Esc key)
self.cancel_event: Optional[asyncio.Event] = None
# Ensure workspace exists
self.workspace_dir.mkdir(parents=True, exist_ok=True)
# Inject workspace information into system prompt if not already present
if "Current Workspace" not in system_prompt:
workspace_info = f"\n\n## Current Workspace\nYou are currently working in: `{self.workspace_dir.absolute()}`\nAll relative paths will be resolved relative to this directory."
system_prompt = system_prompt + workspace_info
self.system_prompt = system_prompt
# Initialize message history
self.messages: list[Message] = [Message(role="system", content=system_prompt)]
# Initialize logger
self.logger = AgentLogger()
# Token usage from last API response (updated after each LLM call)
self.api_total_tokens: int = 0
# Flag to skip token check right after summary (avoid consecutive triggers)
self._skip_next_token_check: bool = False
def add_user_message(self, content: str):
"""Add a user message to history."""
self.messages.append(Message(role="user", content=content))
def _check_cancelled(self) -> bool:
"""Check if agent execution has been cancelled.
Returns:
True if cancelled, False otherwise.
"""
if self.cancel_event is not None and self.cancel_event.is_set():
return True
return False
def _cleanup_incomplete_messages(self):
"""Remove the incomplete assistant message and its partial tool results.
This ensures message consistency after cancellation by removing
only the current step's incomplete messages, preserving completed steps.
"""
# Find the index of the last assistant message
last_assistant_idx = -1
for i in range(len(self.messages) - 1, -1, -1):
if self.messages[i].role == "assistant":
last_assistant_idx = i
break
if last_assistant_idx == -1:
# No assistant message found, nothing to clean
return
# Remove the last assistant message and all tool results after it
removed_count = len(self.messages) - last_assistant_idx
if removed_count > 0:
self.messages = self.messages[:last_assistant_idx]
print(f"{Colors.DIM} Cleaned up {removed_count} incomplete message(s){Colors.RESET}")
def _estimate_tokens(self) -> int:
"""Accurately calculate token count for message history using tiktoken
Uses cl100k_base encoder (GPT-4/Claude/M2 compatible)
"""
try:
# Use cl100k_base encoder (used by GPT-4 and most modern models)
encoding = tiktoken.get_encoding("cl100k_base")
except Exception:
# Fallback: if tiktoken initialization fails, use simple estimation
return self._estimate_tokens_fallback()
total_tokens = 0
for msg in self.messages:
# Count text content
if isinstance(msg.content, str):
total_tokens += len(encoding.encode(msg.content))
elif isinstance(msg.content, list):
for block in msg.content:
if isinstance(block, dict):
# Convert dict to string for calculation
total_tokens += len(encoding.encode(str(block)))
# Count thinking
if msg.thinking:
total_tokens += len(encoding.encode(msg.thinking))
# Count tool_calls
if msg.tool_calls:
total_tokens += len(encoding.encode(str(msg.tool_calls)))
# Metadata overhead per message (approximately 4 tokens)
total_tokens += 4
return total_tokens
def _estimate_tokens_fallback(self) -> int:
"""Fallback token estimation method (when tiktoken is unavailable)"""
total_chars = 0
for msg in self.messages:
if isinstance(msg.content, str):
total_chars += len(msg.content)
elif isinstance(msg.content, list):
for block in msg.content:
if isinstance(block, dict):
total_chars += len(str(block))
if msg.thinking:
total_chars += len(msg.thinking)
if msg.tool_calls:
total_chars += len(str(msg.tool_calls))
# Rough estimation: average 2.5 characters = 1 token
return int(total_chars / 2.5)
async def _summarize_messages(self):
"""Message history summarization: summarize conversations between user messages when tokens exceed limit
Strategy (Agent mode):
- Keep all user messages (these are user intents)
- Summarize content between each user-user pair (agent execution process)
- If last round is still executing (has agent/tool messages but no next user), also summarize
- Structure: system -> user1 -> summary1 -> user2 -> summary2 -> user3 -> summary3 (if executing)
Summary is triggered when EITHER:
- Local token estimation exceeds limit
- API reported total_tokens exceeds limit
"""
# Skip check if we just completed a summary (wait for next LLM call to update api_total_tokens)
if self._skip_next_token_check:
self._skip_next_token_check = False
return
estimated_tokens = self._estimate_tokens()
# Check both local estimation and API reported tokens
should_summarize = estimated_tokens > self.token_limit or self.api_total_tokens > self.token_limit
# If neither exceeded, no summary needed
if not should_summarize:
return
print(
f"\n{Colors.BRIGHT_YELLOW}๐ Token usage - Local estimate: {estimated_tokens}, API reported: {self.api_total_tokens}, Limit: {self.token_limit}{Colors.RESET}"
)
print(f"{Colors.BRIGHT_YELLOW}๐ Triggering message history summarization...{Colors.RESET}")
# Find all user message indices (skip system prompt)
user_indices = [i for i, msg in enumerate(self.messages) if msg.role == "user" and i > 0]
# Need at least 1 user message to perform summary
if len(user_indices) < 1:
print(f"{Colors.BRIGHT_YELLOW}โ ๏ธ Insufficient messages, cannot summarize{Colors.RESET}")
return
# Build new message list
new_messages = [self.messages[0]] # Keep system prompt
summary_count = 0
# Iterate through each user message and summarize the execution process after it
for i, user_idx in enumerate(user_indices):
# Add current user message
new_messages.append(self.messages[user_idx])
# Determine message range to summarize
# If last user, go to end of message list; otherwise to before next user
if i < len(user_indices) - 1:
next_user_idx = user_indices[i + 1]
else:
next_user_idx = len(self.messages)
# Extract execution messages for this round
execution_messages = self.messages[user_idx + 1 : next_user_idx]
# If there are execution messages in this round, summarize them
if execution_messages:
summary_text = await self._create_summary(execution_messages, i + 1)
if summary_text:
summary_message = Message(
role="user",
content=f"[Assistant Execution Summary]\n\n{summary_text}",
)
new_messages.append(summary_message)
summary_count += 1
# Replace message list
self.messages = new_messages
# Skip next token check to avoid consecutive summary triggers
# (api_total_tokens will be updated after next LLM call)
self._skip_next_token_check = True
new_tokens = self._estimate_tokens()
print(f"{Colors.BRIGHT_GREEN}โ Summary completed, local tokens: {estimated_tokens} โ {new_tokens}{Colors.RESET}")
print(f"{Colors.DIM} Structure: system + {len(user_indices)} user messages + {summary_count} summaries{Colors.RESET}")
print(f"{Colors.DIM} Note: API token count will update on next LLM call{Colors.RESET}")
async def _create_summary(self, messages: list[Message], round_num: int) -> str:
"""Create summary for one execution round
Args:
messages: List of messages to summarize
round_num: Round number
Returns:
Summary text
"""
if not messages:
return ""
# Build summary content
summary_content = f"Round {round_num} execution process:\n\n"
for msg in messages:
if msg.role == "assistant":
content_text = msg.content if isinstance(msg.content, str) else str(msg.content)
summary_content += f"Assistant: {content_text}\n"
if msg.tool_calls:
tool_names = [tc.function.name for tc in msg.tool_calls]
summary_content += f" โ Called tools: {', '.join(tool_names)}\n"
elif msg.role == "tool":
result_preview = msg.content if isinstance(msg.content, str) else str(msg.content)
summary_content += f" โ Tool returned: {result_preview}...\n"
# Call LLM to generate concise summary
try:
summary_prompt = f"""Please provide a concise summary of the following Agent execution process:
{summary_content}
Requirements:
1. Focus on what tasks were completed and which tools were called
2. Keep key execution results and important findings
3. Be concise and clear, within 1000 words
4. Use English
5. Do not include "user" related content, only summarize the Agent's execution process"""
summary_msg = Message(role="user", content=summary_prompt)
response = await self.llm.generate(
messages=[
Message(
role="system",
content="You are an assistant skilled at summarizing Agent execution processes.",
),
summary_msg,
]
)
summary_text = response.content
print(f"{Colors.BRIGHT_GREEN}โ Summary for round {round_num} generated successfully{Colors.RESET}")
return summary_text
except Exception as e:
print(f"{Colors.BRIGHT_RED}โ Summary generation failed for round {round_num}: {e}{Colors.RESET}")
# Use simple text summary on failure
return summary_content
async def run(self, cancel_event: Optional[asyncio.Event] = None) -> str:
"""Execute agent loop until task is complete or max steps reached.
Args:
cancel_event: Optional asyncio.Event that can be set to cancel execution.
When set, the agent will stop at the next safe checkpoint
(after completing the current step to keep messages consistent).
Returns:
The final response content, or error message (including cancellation message).
"""
# Set cancellation event (can also be set via self.cancel_event before calling run())
if cancel_event is not None:
self.cancel_event = cancel_event
# Start new run, initialize log file
self.logger.start_new_run()
print(f"{Colors.DIM}๐ Log file: {self.logger.get_log_file_path()}{Colors.RESET}")
step = 0
run_start_time = perf_counter()
while step < self.max_steps:
# Check for cancellation at start of each step
if self._check_cancelled():
self._cleanup_incomplete_messages()
cancel_msg = "Task cancelled by user."
print(f"\n{Colors.BRIGHT_YELLOW}โ ๏ธ {cancel_msg}{Colors.RESET}")
return cancel_msg
step_start_time = perf_counter()
# Check and summarize message history to prevent context overflow
await self._summarize_messages()
# Step header with proper width calculation
BOX_WIDTH = 58
step_text = f"{Colors.BOLD}{Colors.BRIGHT_CYAN}๐ญ Step {step + 1}/{self.max_steps}{Colors.RESET}"
step_display_width = calculate_display_width(step_text)
padding = max(0, BOX_WIDTH - 1 - step_display_width) # -1 for leading space
print(f"\n{Colors.DIM}โญ{'โ' * BOX_WIDTH}โฎ{Colors.RESET}")
print(f"{Colors.DIM}โ{Colors.RESET} {step_text}{' ' * padding}{Colors.DIM}โ{Colors.RESET}")
print(f"{Colors.DIM}โฐ{'โ' * BOX_WIDTH}โฏ{Colors.RESET}")
# Get tool list for LLM call
tool_list = list(self.tools.values())
# Log LLM request and call LLM with Tool objects directly
self.logger.log_request(messages=self.messages, tools=tool_list)
try:
response = await self.llm.generate(messages=self.messages, tools=tool_list)
except Exception as e:
# Check if it's a retry exhausted error
from .retry import RetryExhaustedError
if isinstance(e, RetryExhaustedError):
error_msg = f"LLM call failed after {e.attempts} retries\nLast error: {str(e.last_exception)}"
print(f"\n{Colors.BRIGHT_RED}โ Retry failed:{Colors.RESET} {error_msg}")
else:
error_msg = f"LLM call failed: {str(e)}"
print(f"\n{Colors.BRIGHT_RED}โ Error:{Colors.RESET} {error_msg}")
return error_msg
# Accumulate API reported token usage
if response.usage:
self.api_total_tokens = response.usage.total_tokens
# Log LLM response
self.logger.log_response(
content=response.content,
thinking=response.thinking,
tool_calls=response.tool_calls,
finish_reason=response.finish_reason,
)
# Add assistant message
assistant_msg = Message(
role="assistant",
content=response.content,
thinking=response.thinking,
tool_calls=response.tool_calls,
)
self.messages.append(assistant_msg)
# Print thinking if present
if response.thinking:
print(f"\n{Colors.BOLD}{Colors.MAGENTA}๐ง Thinking:{Colors.RESET}")
print(f"{Colors.DIM}{response.thinking}{Colors.RESET}")
# Print assistant response
if response.content:
print(f"\n{Colors.BOLD}{Colors.BRIGHT_BLUE}๐ค Assistant:{Colors.RESET}")
print(f"{response.content}")
# Check if task is complete (no tool calls)
if not response.tool_calls:
step_elapsed = perf_counter() - step_start_time
total_elapsed = perf_counter() - run_start_time
print(f"\n{Colors.DIM}โฑ๏ธ Step {step + 1} completed in {step_elapsed:.2f}s (total: {total_elapsed:.2f}s){Colors.RESET}")
return response.content
# Check for cancellation before executing tools
if self._check_cancelled():
self._cleanup_incomplete_messages()
cancel_msg = "Task cancelled by user."
print(f"\n{Colors.BRIGHT_YELLOW}โ ๏ธ {cancel_msg}{Colors.RESET}")
return cancel_msg
# Execute tool calls
for tool_call in response.tool_calls:
tool_call_id = tool_call.id
function_name = tool_call.function.name
arguments = tool_call.function.arguments
# Tool call header
print(f"\n{Colors.BRIGHT_YELLOW}๐ง Tool Call:{Colors.RESET} {Colors.BOLD}{Colors.CYAN}{function_name}{Colors.RESET}")
# Arguments (formatted display)
print(f"{Colors.DIM} Arguments:{Colors.RESET}")
# Truncate each argument value to avoid overly long output
truncated_args = {}
for key, value in arguments.items():
value_str = str(value)
if len(value_str) > 200:
truncated_args[key] = value_str[:200] + "..."
else:
truncated_args[key] = value
args_json = json.dumps(truncated_args, indent=2, ensure_ascii=False)
for line in args_json.split("\n"):
print(f" {Colors.DIM}{line}{Colors.RESET}")
# Execute tool
if function_name not in self.tools:
result = ToolResult(
success=False,
content="",
error=f"Unknown tool: {function_name}",
)
else:
try:
tool = self.tools[function_name]
result = await tool.execute(**arguments)
except Exception as e:
# Catch all exceptions during tool execution, convert to failed ToolResult
import traceback
error_detail = f"{type(e).__name__}: {str(e)}"
error_trace = traceback.format_exc()
result = ToolResult(
success=False,
content="",
error=f"Tool execution failed: {error_detail}\n\nTraceback:\n{error_trace}",
)
# Log tool execution result
self.logger.log_tool_result(
tool_name=function_name,
arguments=arguments,
result_success=result.success,
result_content=result.content if result.success else None,
result_error=result.error if not result.success else None,
)
# Print result
if result.success:
result_text = result.content
if len(result_text) > 300:
result_text = result_text[:300] + f"{Colors.DIM}...{Colors.RESET}"
print(f"{Colors.BRIGHT_GREEN}โ Result:{Colors.RESET} {result_text}")
else:
print(f"{Colors.BRIGHT_RED}โ Error:{Colors.RESET} {Colors.RED}{result.error}{Colors.RESET}")
# Add tool result message
tool_msg = Message(
role="tool",
content=result.content if result.success else f"Error: {result.error}",
tool_call_id=tool_call_id,
name=function_name,
)
self.messages.append(tool_msg)
# Check for cancellation after each tool execution
if self._check_cancelled():
self._cleanup_incomplete_messages()
cancel_msg = "Task cancelled by user."
print(f"\n{Colors.BRIGHT_YELLOW}โ ๏ธ {cancel_msg}{Colors.RESET}")
return cancel_msg
step_elapsed = perf_counter() - step_start_time
total_elapsed = perf_counter() - run_start_time
print(f"\n{Colors.DIM}โฑ๏ธ Step {step + 1} completed in {step_elapsed:.2f}s (total: {total_elapsed:.2f}s){Colors.RESET}")
step += 1
# Max steps reached
error_msg = f"Task couldn't be completed after {self.max_steps} steps."
print(f"\n{Colors.BRIGHT_YELLOW}โ ๏ธ {error_msg}{Colors.RESET}")
return error_msg
def get_history(self) -> list[Message]:
"""Get message history."""
return self.messages.copy()
|