2025-04-16 05:42:56 +08:00
import os
2025-03-30 14:48:57 +08:00
import json
2025-04-18 18:50:39 +08:00
import re
2025-04-10 18:52:56 +08:00
from uuid import uuid4
2025-04-17 01:23:28 +08:00
from typing import Optional
2025-04-10 18:52:56 +08:00
2025-04-17 06:13:04 +08:00
# from agent.tools.message_tool import MessageTool
2025-04-18 06:17:48 +08:00
from agent . tools . message_tool import MessageTool
2025-04-13 05:40:01 +08:00
from agent . tools . sb_deploy_tool import SandboxDeployTool
2025-04-21 22:01:51 +08:00
from agent . tools . sb_expose_tool import SandboxExposeTool
2025-05-10 11:46:48 +08:00
from agent . tools . web_search_tool import SandboxWebSearchTool
2025-04-10 18:52:56 +08:00
from dotenv import load_dotenv
2025-04-24 08:45:58 +08:00
from utils . config import config
2025-06-24 18:30:01 +08:00
from flags . flags import is_enabled
2025-05-31 23:31:20 +08:00
from agent . agent_builder_prompt import get_agent_builder_prompt
2025-04-06 17:10:18 +08:00
from agentpress . thread_manager import ThreadManager
2025-04-10 18:52:56 +08:00
from agentpress . response_processor import ProcessorConfig
2025-04-09 07:37:06 +08:00
from agent . tools . sb_shell_tool import SandboxShellTool
2025-04-09 20:54:25 +08:00
from agent . tools . sb_files_tool import SandboxFilesTool
2025-04-14 21:06:02 +08:00
from agent . tools . sb_browser_tool import SandboxBrowserTool
2025-04-17 01:23:28 +08:00
from agent . tools . data_providers_tool import DataProvidersTool
2025-05-29 21:47:31 +08:00
from agent . tools . expand_msg_tool import ExpandMessageTool
2025-04-07 00:45:02 +08:00
from agent . prompt import get_system_prompt
2025-05-10 12:37:07 +08:00
from utils . logger import logger
2025-04-27 07:47:06 +08:00
from utils . auth_utils import get_account_id_from_thread
from services . billing import check_billing_status
2025-04-28 08:28:21 +08:00
from agent . tools . sb_vision_tool import SandboxVisionTool
2025-06-09 09:38:50 +08:00
from agent . tools . sb_image_edit_tool import SandboxImageEditTool
2025-05-21 08:39:28 +08:00
from services . langfuse import langfuse
from langfuse . client import StatefulTraceClient
2025-05-24 20:50:36 +08:00
from services . langfuse import langfuse
2025-05-22 00:19:46 +08:00
from agent . gemini_prompt import get_gemini_system_prompt
2025-05-25 02:17:55 +08:00
from agent . tools . mcp_tool_wrapper import MCPToolWrapper
2025-05-30 15:31:11 +08:00
from agentpress . tool import SchemaType
2025-04-11 00:02:21 +08:00
2025-04-04 23:06:49 +08:00
load_dotenv ( )
2025-03-30 14:48:57 +08:00
2025-04-18 12:49:41 +08:00
async def run_agent (
thread_id : str ,
project_id : str ,
stream : bool ,
thread_manager : Optional [ ThreadManager ] = None ,
native_max_auto_continues : int = 25 ,
2025-05-10 09:58:57 +08:00
max_iterations : int = 100 ,
2025-06-24 00:16:44 +08:00
model_name : str = " anthropic/claude-sonnet-4-20250514 " ,
2025-04-18 12:49:41 +08:00
enable_thinking : Optional [ bool ] = False ,
2025-04-18 14:13:44 +08:00
reasoning_effort : Optional [ str ] = ' low ' ,
2025-05-24 15:08:41 +08:00
enable_context_manager : bool = True ,
2025-05-24 16:15:44 +08:00
agent_config : Optional [ dict ] = None ,
2025-05-31 15:08:39 +08:00
trace : Optional [ StatefulTraceClient ] = None ,
2025-05-31 23:31:20 +08:00
is_agent_builder : Optional [ bool ] = False ,
target_agent_id : Optional [ str ] = None
2025-04-18 12:49:41 +08:00
) :
2025-03-30 14:48:57 +08:00
""" Run the development agent with specified configuration. """
2025-05-10 12:37:07 +08:00
logger . info ( f " 🚀 Starting agent with model: { model_name } " )
2025-05-24 15:08:41 +08:00
if agent_config :
logger . info ( f " Using custom agent: { agent_config . get ( ' name ' , ' Unknown ' ) } " )
2025-04-26 19:53:09 +08:00
2025-05-24 20:50:36 +08:00
if not trace :
trace = langfuse . trace ( name = " run_agent " , session_id = thread_id , metadata = { " project_id " : project_id } )
2025-07-06 00:07:35 +08:00
thread_manager = ThreadManager ( trace = trace , is_agent_builder = is_agent_builder or False , target_agent_id = target_agent_id , agent_config = agent_config )
2025-04-23 21:43:57 +08:00
2025-04-10 18:52:56 +08:00
client = await thread_manager . db . client
2025-04-14 08:32:08 +08:00
# Get account ID from thread for billing checks
account_id = await get_account_id_from_thread ( client , thread_id )
if not account_id :
raise ValueError ( " Could not determine account ID for thread " )
2025-04-23 17:34:00 +08:00
# Get sandbox info from project
project = await client . table ( ' projects ' ) . select ( ' * ' ) . eq ( ' project_id ' , project_id ) . execute ( )
if not project . data or len ( project . data ) == 0 :
raise ValueError ( f " Project { project_id } not found " )
2025-04-26 19:53:09 +08:00
2025-04-23 17:34:00 +08:00
project_data = project . data [ 0 ]
sandbox_info = project_data . get ( ' sandbox ' , { } )
if not sandbox_info . get ( ' id ' ) :
raise ValueError ( f " No sandbox found for project { project_id } " )
2025-04-26 19:53:09 +08:00
2025-04-23 18:00:25 +08:00
# Initialize tools with project_id instead of sandbox object
# This ensures each tool independently verifies it's operating on the correct project
2025-05-24 15:08:41 +08:00
# Get enabled tools from agent config, or use defaults
enabled_tools = None
if agent_config and ' agentpress_tools ' in agent_config :
enabled_tools = agent_config [ ' agentpress_tools ' ]
logger . info ( f " Using custom tool configuration from agent " )
# Register tools based on configuration
# If no agent config (enabled_tools is None), register ALL tools for full Suna capabilities
# If agent config exists, only register explicitly enabled tools
2025-05-31 15:08:39 +08:00
if is_agent_builder :
logger . info ( " Agent builder mode - registering only update agent tool " )
from agent . tools . update_agent_tool import UpdateAgentTool
from services . supabase import DBConnection
db = DBConnection ( )
2025-05-31 23:31:20 +08:00
thread_manager . add_tool ( UpdateAgentTool , thread_manager = thread_manager , db_connection = db , agent_id = target_agent_id )
2025-05-31 15:08:39 +08:00
2025-05-24 15:08:41 +08:00
if enabled_tools is None :
# No agent specified - register ALL tools for full Suna experience
logger . info ( " No agent specified - registering all tools for full Suna capabilities " )
thread_manager . add_tool ( SandboxShellTool , project_id = project_id , thread_manager = thread_manager )
thread_manager . add_tool ( SandboxFilesTool , project_id = project_id , thread_manager = thread_manager )
thread_manager . add_tool ( SandboxBrowserTool , project_id = project_id , thread_id = thread_id , thread_manager = thread_manager )
thread_manager . add_tool ( SandboxDeployTool , project_id = project_id , thread_manager = thread_manager )
thread_manager . add_tool ( SandboxExposeTool , project_id = project_id , thread_manager = thread_manager )
2025-05-30 21:32:53 +08:00
thread_manager . add_tool ( ExpandMessageTool , thread_id = thread_id , thread_manager = thread_manager )
2025-05-24 15:08:41 +08:00
thread_manager . add_tool ( MessageTool )
thread_manager . add_tool ( SandboxWebSearchTool , project_id = project_id , thread_manager = thread_manager )
thread_manager . add_tool ( SandboxVisionTool , project_id = project_id , thread_id = thread_id , thread_manager = thread_manager )
2025-06-09 09:38:50 +08:00
thread_manager . add_tool ( SandboxImageEditTool , project_id = project_id , thread_id = thread_id , thread_manager = thread_manager )
2025-05-24 15:08:41 +08:00
if config . RAPID_API_KEY :
thread_manager . add_tool ( DataProvidersTool )
else :
logger . info ( " Custom agent specified - registering only enabled tools " )
2025-05-30 21:32:53 +08:00
thread_manager . add_tool ( ExpandMessageTool , thread_id = thread_id , thread_manager = thread_manager )
2025-05-31 23:31:20 +08:00
thread_manager . add_tool ( MessageTool )
2025-05-24 15:08:41 +08:00
if enabled_tools . get ( ' sb_shell_tool ' , { } ) . get ( ' enabled ' , False ) :
thread_manager . add_tool ( SandboxShellTool , project_id = project_id , thread_manager = thread_manager )
if enabled_tools . get ( ' sb_files_tool ' , { } ) . get ( ' enabled ' , False ) :
thread_manager . add_tool ( SandboxFilesTool , project_id = project_id , thread_manager = thread_manager )
if enabled_tools . get ( ' sb_browser_tool ' , { } ) . get ( ' enabled ' , False ) :
thread_manager . add_tool ( SandboxBrowserTool , project_id = project_id , thread_id = thread_id , thread_manager = thread_manager )
if enabled_tools . get ( ' sb_deploy_tool ' , { } ) . get ( ' enabled ' , False ) :
thread_manager . add_tool ( SandboxDeployTool , project_id = project_id , thread_manager = thread_manager )
if enabled_tools . get ( ' sb_expose_tool ' , { } ) . get ( ' enabled ' , False ) :
thread_manager . add_tool ( SandboxExposeTool , project_id = project_id , thread_manager = thread_manager )
if enabled_tools . get ( ' web_search_tool ' , { } ) . get ( ' enabled ' , False ) :
thread_manager . add_tool ( SandboxWebSearchTool , project_id = project_id , thread_manager = thread_manager )
if enabled_tools . get ( ' sb_vision_tool ' , { } ) . get ( ' enabled ' , False ) :
thread_manager . add_tool ( SandboxVisionTool , project_id = project_id , thread_id = thread_id , thread_manager = thread_manager )
if config . RAPID_API_KEY and enabled_tools . get ( ' data_providers_tool ' , { } ) . get ( ' enabled ' , False ) :
thread_manager . add_tool ( DataProvidersTool )
2025-05-07 07:56:52 +08:00
2025-06-02 13:44:22 +08:00
# Register MCP tool wrapper if agent has configured MCPs or custom MCPs
2025-05-30 15:31:11 +08:00
mcp_wrapper_instance = None
2025-06-02 13:44:22 +08:00
if agent_config :
# Merge configured_mcps and custom_mcps
all_mcps = [ ]
2025-05-30 15:31:11 +08:00
2025-06-02 13:44:22 +08:00
# Add standard configured MCPs
if agent_config . get ( ' configured_mcps ' ) :
all_mcps . extend ( agent_config [ ' configured_mcps ' ] )
2025-05-30 15:31:11 +08:00
2025-06-02 13:44:22 +08:00
# Add custom MCPs
if agent_config . get ( ' custom_mcps ' ) :
for custom_mcp in agent_config [ ' custom_mcps ' ] :
# Transform custom MCP to standard format
2025-06-23 14:59:21 +08:00
custom_type = custom_mcp . get ( ' customType ' , custom_mcp . get ( ' type ' , ' sse ' ) )
2025-06-02 13:44:22 +08:00
mcp_config = {
' name ' : custom_mcp [ ' name ' ] ,
2025-06-23 14:59:21 +08:00
' qualifiedName ' : f " custom_ { custom_type } _ { custom_mcp [ ' name ' ] . replace ( ' ' , ' _ ' ) . lower ( ) } " ,
2025-06-02 13:44:22 +08:00
' config ' : custom_mcp [ ' config ' ] ,
' enabledTools ' : custom_mcp . get ( ' enabledTools ' , [ ] ) ,
2025-06-19 18:52:38 +08:00
' instructions ' : custom_mcp . get ( ' instructions ' , ' ' ) ,
2025-06-02 13:44:22 +08:00
' isCustom ' : True ,
2025-06-23 14:59:21 +08:00
' customType ' : custom_type
2025-06-02 13:44:22 +08:00
}
all_mcps . append ( mcp_config )
if all_mcps :
logger . info ( f " Registering MCP tool wrapper for { len ( all_mcps ) } MCP servers (including { len ( agent_config . get ( ' custom_mcps ' , [ ] ) ) } custom) " )
thread_manager . add_tool ( MCPToolWrapper , mcp_configs = all_mcps )
for tool_name , tool_info in thread_manager . tool_registry . tools . items ( ) :
if isinstance ( tool_info [ ' instance ' ] , MCPToolWrapper ) :
mcp_wrapper_instance = tool_info [ ' instance ' ]
break
if mcp_wrapper_instance :
try :
await mcp_wrapper_instance . initialize_and_register_tools ( )
logger . info ( " MCP tools initialized successfully " )
updated_schemas = mcp_wrapper_instance . get_schemas ( )
2025-06-18 21:14:12 +08:00
logger . info ( f " MCP wrapper has { len ( updated_schemas ) } schemas available " )
2025-06-02 13:44:22 +08:00
for method_name , schema_list in updated_schemas . items ( ) :
2025-06-19 18:52:38 +08:00
if method_name != ' call_mcp_tool ' :
2025-06-02 13:44:22 +08:00
for schema in schema_list :
if schema . schema_type == SchemaType . OPENAPI :
thread_manager . tool_registry . tools [ method_name ] = {
" instance " : mcp_wrapper_instance ,
" schema " : schema
}
2025-06-18 21:14:12 +08:00
logger . info ( f " Registered dynamic MCP tool: { method_name } " )
# Log all registered tools for debugging
all_tools = list ( thread_manager . tool_registry . tools . keys ( ) )
logger . info ( f " All registered tools after MCP initialization: { all_tools } " )
mcp_tools = [ tool for tool in all_tools if tool not in [ ' call_mcp_tool ' , ' sb_files_tool ' , ' message_tool ' , ' expand_msg_tool ' , ' web_search_tool ' , ' sb_shell_tool ' , ' sb_vision_tool ' , ' sb_browser_tool ' , ' computer_use_tool ' , ' data_providers_tool ' , ' sb_deploy_tool ' , ' sb_expose_tool ' , ' update_agent_tool ' ] ]
logger . info ( f " MCP tools registered: { mcp_tools } " )
2025-05-30 15:31:11 +08:00
2025-06-02 13:44:22 +08:00
except Exception as e :
logger . error ( f " Failed to initialize MCP tools: { e } " )
# Continue without MCP tools if initialization fails
2025-05-25 02:17:55 +08:00
2025-05-24 15:08:41 +08:00
# Prepare system prompt
# First, get the default system prompt
2025-06-29 00:27:58 +08:00
if " gemini-2.5-flash " in model_name . lower ( ) and " gemini-2.5-pro " not in model_name . lower ( ) :
2025-05-24 15:08:41 +08:00
default_system_content = get_gemini_system_prompt ( )
else :
# Use the original prompt - the LLM can only use tools that are registered
default_system_content = get_system_prompt ( )
# Add sample response for non-anthropic models
if " anthropic " not in model_name . lower ( ) :
2025-05-07 07:56:52 +08:00
sample_response_path = os . path . join ( os . path . dirname ( __file__ ) , ' sample_responses/1.txt ' )
with open ( sample_response_path , ' r ' ) as file :
sample_response = file . read ( )
2025-05-24 15:08:41 +08:00
default_system_content = default_system_content + " \n \n <sample_assistant_response> " + sample_response + " </sample_assistant_response> "
# Handle custom agent system prompt
if agent_config and agent_config . get ( ' system_prompt ' ) :
custom_system_prompt = agent_config [ ' system_prompt ' ] . strip ( )
2025-05-07 07:56:52 +08:00
2025-05-24 15:08:41 +08:00
# Completely replace the default system prompt with the custom one
# This prevents confusion and tool hallucination
system_content = custom_system_prompt
logger . info ( f " Using ONLY custom agent system prompt for: { agent_config . get ( ' name ' , ' Unknown ' ) } " )
2025-05-31 23:31:20 +08:00
elif is_agent_builder :
system_content = get_agent_builder_prompt ( )
logger . info ( " Using agent builder system prompt " )
2025-05-07 07:56:52 +08:00
else :
2025-05-24 15:08:41 +08:00
# Use just the default system prompt
system_content = default_system_content
logger . info ( " Using default system prompt only " )
2025-05-25 02:17:55 +08:00
2025-06-24 18:30:01 +08:00
if await is_enabled ( " knowledge_base " ) :
try :
from services . supabase import DBConnection
kb_db = DBConnection ( )
kb_client = await kb_db . client
2025-07-03 11:42:09 +08:00
current_agent_id = agent_config . get ( ' agent_id ' ) if agent_config else None
kb_result = await kb_client . rpc ( ' get_combined_knowledge_base_context ' , {
2025-06-24 18:30:01 +08:00
' p_thread_id ' : thread_id ,
2025-07-03 11:42:09 +08:00
' p_agent_id ' : current_agent_id ,
2025-06-24 18:30:01 +08:00
' p_max_tokens ' : 4000
} ) . execute ( )
if kb_result . data and kb_result . data . strip ( ) :
2025-07-03 11:42:09 +08:00
logger . info ( f " Adding combined knowledge base context to system prompt for thread { thread_id } , agent { current_agent_id } " )
system_content + = " \n \n " + kb_result . data
2025-06-24 18:30:01 +08:00
else :
2025-07-03 11:42:09 +08:00
logger . debug ( f " No knowledge base context found for thread { thread_id } , agent { current_agent_id } " )
2025-06-24 18:30:01 +08:00
except Exception as e :
logger . error ( f " Error retrieving knowledge base context for thread { thread_id } : { e } " )
2025-06-02 13:44:22 +08:00
if agent_config and ( agent_config . get ( ' configured_mcps ' ) or agent_config . get ( ' custom_mcps ' ) ) and mcp_wrapper_instance and mcp_wrapper_instance . _initialized :
2025-05-25 02:17:55 +08:00
mcp_info = " \n \n --- MCP Tools Available --- \n "
2025-05-30 15:31:11 +08:00
mcp_info + = " You have access to external MCP (Model Context Protocol) server tools. \n "
mcp_info + = " MCP tools can be called directly using their native function names in the standard function calling format: \n "
2025-05-29 15:19:08 +08:00
mcp_info + = ' <function_calls> \n '
2025-05-30 15:31:11 +08:00
mcp_info + = ' <invoke name= " {tool_name} " > \n '
mcp_info + = ' <parameter name= " param1 " >value1</parameter> \n '
mcp_info + = ' <parameter name= " param2 " >value2</parameter> \n '
2025-05-29 15:19:08 +08:00
mcp_info + = ' </invoke> \n '
2025-05-30 15:31:11 +08:00
mcp_info + = ' </function_calls> \n \n '
# List available MCP tools
mcp_info + = " Available MCP tools: \n "
try :
# Get the actual registered schemas from the wrapper
registered_schemas = mcp_wrapper_instance . get_schemas ( )
for method_name , schema_list in registered_schemas . items ( ) :
if method_name == ' call_mcp_tool ' :
continue # Skip the fallback method
# Get the schema info
for schema in schema_list :
if schema . schema_type == SchemaType . OPENAPI :
func_info = schema . schema . get ( ' function ' , { } )
description = func_info . get ( ' description ' , ' No description available ' )
# Extract server name from description if available
server_match = description . find ( ' (MCP Server: ' )
if server_match != - 1 :
server_end = description . find ( ' ) ' , server_match )
server_info = description [ server_match : server_end + 1 ]
else :
server_info = ' '
mcp_info + = f " - ** { method_name } **: { description } \n "
# Show parameter info
params = func_info . get ( ' parameters ' , { } )
props = params . get ( ' properties ' , { } )
if props :
mcp_info + = f " Parameters: { ' , ' . join ( props . keys ( ) ) } \n "
except Exception as e :
logger . error ( f " Error listing MCP tools: { e } " )
mcp_info + = " - Error loading MCP tool list \n "
2025-05-25 02:17:55 +08:00
2025-05-30 03:34:41 +08:00
# Add critical instructions for using search results
mcp_info + = " \n 🚨 CRITICAL MCP TOOL RESULT INSTRUCTIONS 🚨 \n "
mcp_info + = " When you use ANY MCP (Model Context Protocol) tools: \n "
mcp_info + = " 1. ALWAYS read and use the EXACT results returned by the MCP tool \n "
mcp_info + = " 2. For search tools: ONLY cite URLs, sources, and information from the actual search results \n "
mcp_info + = " 3. For any tool: Base your response entirely on the tool ' s output - do NOT add external information \n "
mcp_info + = " 4. DO NOT fabricate, invent, hallucinate, or make up any sources, URLs, or data \n "
mcp_info + = " 5. If you need more information, call the MCP tool again with different parameters \n "
mcp_info + = " 6. When writing reports/summaries: Reference ONLY the data from MCP tool results \n "
mcp_info + = " 7. If the MCP tool doesn ' t return enough information, explicitly state this limitation \n "
mcp_info + = " 8. Always double-check that every fact, URL, and reference comes from the MCP tool output \n "
mcp_info + = " \n IMPORTANT: MCP tool results are your PRIMARY and ONLY source of truth for external data! \n "
mcp_info + = " NEVER supplement MCP results with your training data or make assumptions beyond what the tools provide. \n "
2025-05-25 02:17:55 +08:00
system_content + = mcp_info
2025-05-24 15:08:41 +08:00
system_message = { " role " : " system " , " content " : system_content }
2025-03-30 14:48:57 +08:00
2025-04-10 21:13:32 +08:00
iteration_count = 0
continue_execution = True
2025-04-26 19:53:09 +08:00
2025-05-24 20:50:36 +08:00
latest_user_message = await client . table ( ' messages ' ) . select ( ' * ' ) . eq ( ' thread_id ' , thread_id ) . eq ( ' type ' , ' user ' ) . order ( ' created_at ' , desc = True ) . limit ( 1 ) . execute ( )
if latest_user_message . data and len ( latest_user_message . data ) > 0 :
2025-06-01 18:32:50 +08:00
data = latest_user_message . data [ 0 ] [ ' content ' ]
if isinstance ( data , str ) :
data = json . loads ( data )
2025-07-07 06:32:25 +08:00
if trace :
trace . update ( input = data [ ' content ' ] )
2025-05-24 20:50:36 +08:00
2025-04-10 21:13:32 +08:00
while continue_execution and iteration_count < max_iterations :
iteration_count + = 1
2025-05-10 12:37:07 +08:00
logger . info ( f " 🔄 Running iteration { iteration_count } of { max_iterations } ... " )
2025-04-14 08:32:08 +08:00
2025-04-18 06:17:48 +08:00
# Billing check on each iteration - still needed within the iterations
2025-04-14 08:32:08 +08:00
can_run , message , subscription = await check_billing_status ( client , account_id )
if not can_run :
error_msg = f " Billing limit reached: { message } "
2025-07-07 06:32:25 +08:00
if trace :
trace . event ( name = " billing_limit_reached " , level = " ERROR " , status_message = ( f " { error_msg } " ) )
2025-04-14 08:32:08 +08:00
# Yield a special message to indicate billing limit reached
yield {
" type " : " status " ,
" status " : " stopped " ,
" message " : error_msg
}
break
2025-04-11 07:53:01 +08:00
# Check if last message is from assistant using direct Supabase query
2025-04-26 19:53:09 +08:00
latest_message = await client . table ( ' messages ' ) . select ( ' * ' ) . eq ( ' thread_id ' , thread_id ) . in_ ( ' type ' , [ ' assistant ' , ' tool ' , ' user ' ] ) . order ( ' created_at ' , desc = True ) . limit ( 1 ) . execute ( )
2025-04-11 07:53:01 +08:00
if latest_message . data and len ( latest_message . data ) > 0 :
message_type = latest_message . data [ 0 ] . get ( ' type ' )
if message_type == ' assistant ' :
2025-05-10 12:37:07 +08:00
logger . info ( f " Last message was from assistant, stopping execution " )
2025-07-07 06:32:25 +08:00
if trace :
trace . event ( name = " last_message_from_assistant " , level = " DEFAULT " , status_message = ( f " Last message was from assistant, stopping execution " ) )
2025-04-11 07:53:01 +08:00
continue_execution = False
break
2025-04-26 19:53:09 +08:00
2025-04-28 08:28:21 +08:00
# ---- Temporary Message Handling (Browser State & Image Context) ----
2025-04-16 00:36:01 +08:00
temporary_message = None
2025-04-28 08:28:21 +08:00
temp_message_content_list = [ ] # List to hold text/image blocks
# Get the latest browser_state message
latest_browser_state_msg = await client . table ( ' messages ' ) . select ( ' * ' ) . eq ( ' thread_id ' , thread_id ) . eq ( ' type ' , ' browser_state ' ) . order ( ' created_at ' , desc = True ) . limit ( 1 ) . execute ( )
if latest_browser_state_msg . data and len ( latest_browser_state_msg . data ) > 0 :
2025-04-16 00:36:01 +08:00
try :
2025-06-01 18:32:50 +08:00
browser_content = latest_browser_state_msg . data [ 0 ] [ " content " ]
if isinstance ( browser_content , str ) :
browser_content = json . loads ( browser_content )
2025-04-28 08:28:21 +08:00
screenshot_base64 = browser_content . get ( " screenshot_base64 " )
2025-06-01 19:43:23 +08:00
screenshot_url = browser_content . get ( " image_url " )
2025-05-14 13:28:11 +08:00
# Create a copy of the browser state without screenshot data
2025-04-28 08:28:21 +08:00
browser_state_text = browser_content . copy ( )
browser_state_text . pop ( ' screenshot_base64 ' , None )
2025-06-01 19:43:23 +08:00
browser_state_text . pop ( ' image_url ' , None )
2025-04-28 08:28:21 +08:00
if browser_state_text :
temp_message_content_list . append ( {
2025-04-16 00:36:01 +08:00
" type " : " text " ,
2025-04-28 08:28:21 +08:00
" text " : f " The following is the current state of the browser: \n { json . dumps ( browser_state_text , indent = 2 ) } "
2025-04-16 00:36:01 +08:00
} )
2025-06-16 20:29:47 +08:00
# Only add screenshot if model is not Gemini, Anthropic, or OpenAI
if ' gemini ' in model_name . lower ( ) or ' anthropic ' in model_name . lower ( ) or ' openai ' in model_name . lower ( ) :
# Prioritize screenshot_url if available
if screenshot_url :
temp_message_content_list . append ( {
" type " : " image_url " ,
" image_url " : {
" url " : screenshot_url ,
" format " : " image/jpeg "
}
} )
2025-07-07 06:32:25 +08:00
if trace :
trace . event ( name = " screenshot_url_added_to_temporary_message " , level = " DEFAULT " , status_message = ( f " Screenshot URL added to temporary message. " ) )
2025-06-16 20:29:47 +08:00
elif screenshot_base64 :
# Fallback to base64 if URL not available
temp_message_content_list . append ( {
" type " : " image_url " ,
" image_url " : {
" url " : f " data:image/jpeg;base64, { screenshot_base64 } " ,
}
} )
2025-07-07 06:32:25 +08:00
if trace :
trace . event ( name = " screenshot_base64_added_to_temporary_message " , level = " WARNING " , status_message = ( f " Screenshot base64 added to temporary message. Prefer screenshot_url if available. " ) )
2025-06-16 20:29:47 +08:00
else :
logger . warning ( " Browser state found but no screenshot data. " )
2025-07-07 06:32:25 +08:00
if trace :
trace . event ( name = " browser_state_found_but_no_screenshot_data " , level = " WARNING " , status_message = ( f " Browser state found but no screenshot data. " ) )
2025-04-16 00:36:01 +08:00
else :
2025-06-16 20:29:47 +08:00
logger . warning ( " Model is Gemini, Anthropic, or OpenAI, so not adding screenshot to temporary message. " )
2025-07-07 06:32:25 +08:00
if trace :
trace . event ( name = " model_is_gemini_anthropic_or_openai " , level = " WARNING " , status_message = ( f " Model is Gemini, Anthropic, or OpenAI, so not adding screenshot to temporary message. " ) )
2025-04-26 19:53:09 +08:00
2025-04-16 00:36:01 +08:00
except Exception as e :
2025-04-28 08:28:21 +08:00
logger . error ( f " Error parsing browser state: { e } " )
2025-07-07 06:32:25 +08:00
if trace :
trace . event ( name = " error_parsing_browser_state " , level = " ERROR " , status_message = ( f " { e } " ) )
2025-04-28 08:28:21 +08:00
# Get the latest image_context message (NEW)
latest_image_context_msg = await client . table ( ' messages ' ) . select ( ' * ' ) . eq ( ' thread_id ' , thread_id ) . eq ( ' type ' , ' image_context ' ) . order ( ' created_at ' , desc = True ) . limit ( 1 ) . execute ( )
if latest_image_context_msg . data and len ( latest_image_context_msg . data ) > 0 :
try :
2025-06-01 18:15:20 +08:00
image_context_content = latest_image_context_msg . data [ 0 ] [ " content " ] if isinstance ( latest_image_context_msg . data [ 0 ] [ " content " ] , dict ) else json . loads ( latest_image_context_msg . data [ 0 ] [ " content " ] )
2025-04-28 08:28:21 +08:00
base64_image = image_context_content . get ( " base64 " )
mime_type = image_context_content . get ( " mime_type " )
file_path = image_context_content . get ( " file_path " , " unknown file " )
if base64_image and mime_type :
temp_message_content_list . append ( {
" type " : " text " ,
" text " : f " Here is the image you requested to see: ' { file_path } ' "
} )
temp_message_content_list . append ( {
" type " : " image_url " ,
" image_url " : {
" url " : f " data: { mime_type } ;base64, { base64_image } " ,
}
} )
else :
logger . warning ( f " Image context found for ' { file_path } ' but missing base64 or mime_type. " )
2025-04-26 19:53:09 +08:00
2025-04-28 08:28:21 +08:00
await client . table ( ' messages ' ) . delete ( ) . eq ( ' message_id ' , latest_image_context_msg . data [ 0 ] [ " message_id " ] ) . execute ( )
except Exception as e :
logger . error ( f " Error parsing image context: { e } " )
2025-07-07 06:32:25 +08:00
if trace :
trace . event ( name = " error_parsing_image_context " , level = " ERROR " , status_message = ( f " { e } " ) )
2025-04-28 08:28:21 +08:00
# If we have any content, construct the temporary_message
if temp_message_content_list :
temporary_message = { " role " : " user " , " content " : temp_message_content_list }
# logger.debug(f"Constructed temporary message with {len(temp_message_content_list)} content blocks.")
# ---- End Temporary Message Handling ----
2025-04-26 19:53:09 +08:00
# Set max_tokens based on model
max_tokens = None
if " sonnet " in model_name . lower ( ) :
2025-06-13 18:07:14 +08:00
# Claude 3.5 Sonnet has a limit of 8192 tokens
max_tokens = 8192
2025-04-26 19:53:09 +08:00
elif " gpt-4 " in model_name . lower ( ) :
max_tokens = 4096
2025-06-29 00:27:58 +08:00
elif " gemini-2.5-pro " in model_name . lower ( ) :
# Gemini 2.5 Pro has 64k max output tokens
max_tokens = 64000
2025-05-10 09:58:57 +08:00
2025-07-07 06:32:25 +08:00
generation = trace . generation ( name = " thread_manager.run_thread " ) if trace else None
2025-05-10 09:58:57 +08:00
try :
# Make the LLM call and process the response
response = await thread_manager . run_thread (
thread_id = thread_id ,
system_prompt = system_message ,
stream = stream ,
llm_model = model_name ,
llm_temperature = 0 ,
llm_max_tokens = max_tokens ,
tool_choice = " auto " ,
max_xml_tool_calls = 1 ,
temporary_message = temporary_message ,
processor_config = ProcessorConfig (
xml_tool_calling = True ,
native_tool_calling = False ,
execute_tools = True ,
execute_on_stream = True ,
tool_execution_strategy = " parallel " ,
xml_adding_strategy = " user_message "
) ,
native_max_auto_continues = native_max_auto_continues ,
include_xml_examples = True ,
enable_thinking = enable_thinking ,
reasoning_effort = reasoning_effort ,
2025-05-21 08:39:28 +08:00
enable_context_manager = enable_context_manager ,
2025-05-24 20:50:36 +08:00
generation = generation
2025-05-10 09:58:57 +08:00
)
if isinstance ( response , dict ) and " status " in response and response [ " status " ] == " error " :
2025-05-10 12:37:07 +08:00
logger . error ( f " Error response from run_thread: { response . get ( ' message ' , ' Unknown error ' ) } " )
2025-07-07 06:32:25 +08:00
if trace :
trace . event ( name = " error_response_from_run_thread " , level = " ERROR " , status_message = ( f " { response . get ( ' message ' , ' Unknown error ' ) } " ) )
2025-05-10 09:58:57 +08:00
yield response
break
# Track if we see ask, complete, or web-browser-takeover tool calls
last_tool_call = None
2025-05-28 20:07:54 +08:00
agent_should_terminate = False
2025-04-26 19:53:09 +08:00
2025-05-10 09:58:57 +08:00
# Process the response
error_detected = False
2025-07-07 06:32:25 +08:00
full_response = " "
2025-05-10 09:58:57 +08:00
try :
2025-07-07 06:32:25 +08:00
# Check if response is iterable (async generator) or a dict (error case)
if hasattr ( response , ' __aiter__ ' ) and not isinstance ( response , dict ) :
async for chunk in response :
# If we receive an error chunk, we should stop after this iteration
if isinstance ( chunk , dict ) and chunk . get ( ' type ' ) == ' status ' and chunk . get ( ' status ' ) == ' error ' :
logger . error ( f " Error chunk detected: { chunk . get ( ' message ' , ' Unknown error ' ) } " )
if trace :
trace . event ( name = " error_chunk_detected " , level = " ERROR " , status_message = ( f " { chunk . get ( ' message ' , ' Unknown error ' ) } " ) )
error_detected = True
yield chunk # Forward the error chunk
continue # Continue processing other chunks but don't break yet
# Check for termination signal in status messages
if chunk . get ( ' type ' ) == ' status ' :
try :
# Parse the metadata to check for termination signal
metadata = chunk . get ( ' metadata ' , { } )
if isinstance ( metadata , str ) :
metadata = json . loads ( metadata )
2025-05-28 20:07:54 +08:00
2025-07-07 06:32:25 +08:00
if metadata . get ( ' agent_should_terminate ' ) :
agent_should_terminate = True
logger . info ( " Agent termination signal detected in status message " )
if trace :
trace . event ( name = " agent_termination_signal_detected " , level = " DEFAULT " , status_message = " Agent termination signal detected in status message " )
2025-05-28 20:07:54 +08:00
2025-07-07 06:32:25 +08:00
# Extract the tool name from the status content if available
content = chunk . get ( ' content ' , { } )
if isinstance ( content , str ) :
content = json . loads ( content )
if content . get ( ' function_name ' ) :
last_tool_call = content [ ' function_name ' ]
elif content . get ( ' xml_tag_name ' ) :
last_tool_call = content [ ' xml_tag_name ' ]
except Exception as e :
logger . debug ( f " Error parsing status message for termination check: { e } " )
# Check for XML versions like <ask>, <complete>, or <web-browser-takeover> in assistant content chunks
if chunk . get ( ' type ' ) == ' assistant ' and ' content ' in chunk :
try :
# The content field might be a JSON string or object
content = chunk . get ( ' content ' , ' {} ' )
if isinstance ( content , str ) :
assistant_content_json = json . loads ( content )
else :
assistant_content_json = content
# The actual text content is nested within
assistant_text = assistant_content_json . get ( ' content ' , ' ' )
full_response + = assistant_text
if isinstance ( assistant_text , str ) :
if ' </ask> ' in assistant_text or ' </complete> ' in assistant_text or ' </web-browser-takeover> ' in assistant_text :
if ' </ask> ' in assistant_text :
xml_tool = ' ask '
elif ' </complete> ' in assistant_text :
xml_tool = ' complete '
elif ' </web-browser-takeover> ' in assistant_text :
xml_tool = ' web-browser-takeover '
last_tool_call = xml_tool
logger . info ( f " Agent used XML tool: { xml_tool } " )
if trace :
trace . event ( name = " agent_used_xml_tool " , level = " DEFAULT " , status_message = ( f " Agent used XML tool: { xml_tool } " ) )
2025-07-09 00:54:22 +08:00
2025-07-07 06:32:25 +08:00
except json . JSONDecodeError :
# Handle cases where content might not be valid JSON
logger . warning ( f " Warning: Could not parse assistant content JSON: { chunk . get ( ' content ' ) } " )
if trace :
trace . event ( name = " warning_could_not_parse_assistant_content_json " , level = " WARNING " , status_message = ( f " Warning: Could not parse assistant content JSON: { chunk . get ( ' content ' ) } " ) )
except Exception as e :
logger . error ( f " Error processing assistant chunk: { e } " )
if trace :
trace . event ( name = " error_processing_assistant_chunk " , level = " ERROR " , status_message = ( f " Error processing assistant chunk: { e } " ) )
yield chunk
else :
# Response is not iterable, likely an error dict
logger . error ( f " Response is not iterable: { response } " )
error_detected = True
2025-05-10 09:58:57 +08:00
# Check if we should stop based on the last tool call or error
if error_detected :
2025-05-10 12:37:07 +08:00
logger . info ( f " Stopping due to error detected in response " )
2025-07-07 06:32:25 +08:00
if trace :
trace . event ( name = " stopping_due_to_error_detected_in_response " , level = " DEFAULT " , status_message = ( f " Stopping due to error detected in response " ) )
if generation :
generation . end ( output = full_response , status_message = " error_detected " , level = " ERROR " )
2025-05-10 09:58:57 +08:00
break
2025-05-28 20:07:54 +08:00
if agent_should_terminate or last_tool_call in [ ' ask ' , ' complete ' , ' web-browser-takeover ' ] :
2025-05-10 12:37:07 +08:00
logger . info ( f " Agent decided to stop with tool: { last_tool_call } " )
2025-07-07 06:32:25 +08:00
if trace :
trace . event ( name = " agent_decided_to_stop_with_tool " , level = " DEFAULT " , status_message = ( f " Agent decided to stop with tool: { last_tool_call } " ) )
if generation :
generation . end ( output = full_response , status_message = " agent_stopped " )
2025-05-10 09:58:57 +08:00
continue_execution = False
2025-05-21 08:39:28 +08:00
2025-05-10 09:58:57 +08:00
except Exception as e :
# Just log the error and re-raise to stop all iterations
error_msg = f " Error during response streaming: { str ( e ) } "
2025-05-10 12:37:07 +08:00
logger . error ( f " Error: { error_msg } " )
2025-07-07 06:32:25 +08:00
if trace :
trace . event ( name = " error_during_response_streaming " , level = " ERROR " , status_message = ( f " Error during response streaming: { str ( e ) } " ) )
if generation :
generation . end ( output = full_response , status_message = error_msg , level = " ERROR " )
2025-05-10 09:58:57 +08:00
yield {
" type " : " status " ,
" status " : " error " ,
" message " : error_msg
}
# Stop execution immediately on any error
break
except Exception as e :
# Just log the error and re-raise to stop all iterations
error_msg = f " Error running thread: { str ( e ) } "
2025-05-10 12:37:07 +08:00
logger . error ( f " Error: { error_msg } " )
2025-07-07 06:32:25 +08:00
if trace :
trace . event ( name = " error_running_thread " , level = " ERROR " , status_message = ( f " Error running thread: { str ( e ) } " ) )
2025-05-10 09:58:57 +08:00
yield {
" type " : " status " ,
" status " : " error " ,
" message " : error_msg
}
# Stop execution immediately on any error
break
2025-07-07 06:32:25 +08:00
if generation :
generation . end ( output = full_response )
2025-05-21 08:39:28 +08:00
2025-07-06 12:40:44 +08:00
langfuse . flush ( )