2025-07-23 00:11:10 +08:00
|
|
|
from agent.prompt import SYSTEM_PROMPT
|
|
|
|
|
2025-08-17 08:44:57 +08:00
|
|
|
# Suna default configuration - simplified and centralized
|
|
|
|
SUNA_CONFIG = {
|
|
|
|
"name": "Suna",
|
|
|
|
"description": "Suna is your AI assistant with access to various tools and integrations to help you with tasks across domains.",
|
|
|
|
"avatar": "🌞",
|
|
|
|
"avatar_color": "#F59E0B",
|
2025-08-20 07:33:09 +08:00
|
|
|
"model": "openai/gpt-5-mini",
|
2025-08-17 08:44:57 +08:00
|
|
|
"system_prompt": SYSTEM_PROMPT,
|
|
|
|
"configured_mcps": [],
|
|
|
|
"custom_mcps": [],
|
|
|
|
"agentpress_tools": {
|
2025-07-30 14:59:25 +08:00
|
|
|
"sb_shell_tool": True,
|
2025-08-15 13:12:34 +08:00
|
|
|
"sb_files_tool": True,
|
2025-07-30 14:59:25 +08:00
|
|
|
"sb_deploy_tool": True,
|
|
|
|
"sb_expose_tool": True,
|
|
|
|
"web_search_tool": True,
|
|
|
|
"sb_vision_tool": True,
|
|
|
|
"sb_image_edit_tool": True,
|
2025-08-18 13:17:39 +08:00
|
|
|
"sb_presentation_outline_tool": False,
|
|
|
|
"sb_presentation_tool": False,
|
2025-08-21 14:06:01 +08:00
|
|
|
|
2025-08-08 17:45:20 +08:00
|
|
|
"sb_sheets_tool": True,
|
2025-08-18 13:17:39 +08:00
|
|
|
"sb_web_dev_tool": False,
|
2025-08-17 07:15:21 +08:00
|
|
|
"browser_tool": True,
|
|
|
|
"data_providers_tool": True,
|
|
|
|
"agent_config_tool": True,
|
|
|
|
"mcp_search_tool": True,
|
|
|
|
"credential_profile_tool": True,
|
|
|
|
"workflow_tool": True,
|
|
|
|
"trigger_tool": True
|
2025-08-17 08:44:57 +08:00
|
|
|
},
|
|
|
|
"is_default": True
|
|
|
|
}
|
2025-07-23 15:50:20 +08:00
|
|
|
|