2025-09-04 13:40:25 +08:00
|
|
|
from core.prompts.prompt import SYSTEM_PROMPT
|
2025-07-23 00:11:10 +08:00
|
|
|
|
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.",
|
2025-10-06 00:09:26 +08:00
|
|
|
"model": "claude-sonnet-4.5",
|
2025-08-17 08:44:57 +08:00
|
|
|
"system_prompt": SYSTEM_PROMPT,
|
|
|
|
"configured_mcps": [],
|
|
|
|
"custom_mcps": [],
|
|
|
|
"agentpress_tools": {
|
2025-09-26 17:19:12 +08:00
|
|
|
# Core file and shell operations
|
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-08-26 17:03:56 +08:00
|
|
|
"sb_deploy_tool": True,
|
|
|
|
"sb_expose_tool": True,
|
2025-09-26 17:19:12 +08:00
|
|
|
"sb_upload_file_tool": True,
|
|
|
|
|
|
|
|
# Search and research tools
|
2025-07-30 14:59:25 +08:00
|
|
|
"web_search_tool": True,
|
2025-09-24 01:00:05 +08:00
|
|
|
"image_search_tool": True,
|
2025-09-26 17:19:12 +08:00
|
|
|
"data_providers_tool": True,
|
|
|
|
|
|
|
|
# AI vision and image tools
|
2025-07-30 14:59:25 +08:00
|
|
|
"sb_vision_tool": True,
|
|
|
|
"sb_image_edit_tool": True,
|
2025-09-26 17:19:12 +08:00
|
|
|
"sb_design_tool": True,
|
|
|
|
|
|
|
|
# Document and content creation
|
|
|
|
"sb_docs_tool": True,
|
2025-08-18 13:17:39 +08:00
|
|
|
"sb_presentation_outline_tool": False,
|
2025-09-26 17:19:12 +08:00
|
|
|
"sb_presentation_tool": True,
|
2025-09-30 04:52:49 +08:00
|
|
|
"sb_sheets_tool": False,
|
2025-09-26 17:19:12 +08:00
|
|
|
"sb_kb_tool": True,
|
2025-09-27 15:56:07 +08:00
|
|
|
|
|
|
|
# search tools
|
|
|
|
"people_search_tool": True,
|
|
|
|
"company_search_tool": True,
|
2025-09-26 17:19:12 +08:00
|
|
|
|
|
|
|
# Browser automation (both variants)
|
2025-08-17 07:15:21 +08:00
|
|
|
"browser_tool": True,
|
2025-09-26 17:19:12 +08:00
|
|
|
"sb_browser_tool": True,
|
|
|
|
|
|
|
|
# Web development tools
|
|
|
|
"sb_web_dev_tool": False,
|
|
|
|
"sb_templates_tool": False,
|
|
|
|
|
|
|
|
# Computer automation
|
|
|
|
"computer_use_tool": True,
|
|
|
|
|
|
|
|
# Agent builder tools
|
2025-08-17 07:15:21 +08:00
|
|
|
"agent_config_tool": True,
|
2025-08-26 16:28:27 +08:00
|
|
|
"agent_creation_tool": True,
|
2025-08-17 07:15:21 +08:00
|
|
|
"mcp_search_tool": True,
|
|
|
|
"credential_profile_tool": True,
|
|
|
|
"trigger_tool": True
|
2025-08-17 08:44:57 +08:00
|
|
|
},
|
|
|
|
"is_default": True
|
|
|
|
}
|
2025-07-23 15:50:20 +08:00
|
|
|
|