mirror of https://github.com/kortix-ai/suna.git
39 lines
1.2 KiB
Python
39 lines
1.2 KiB
Python
from agent.prompt import SYSTEM_PROMPT
|
|
|
|
# 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",
|
|
"model": "openai/gpt-5-mini",
|
|
"system_prompt": SYSTEM_PROMPT,
|
|
"configured_mcps": [],
|
|
"custom_mcps": [],
|
|
"agentpress_tools": {
|
|
"sb_shell_tool": True,
|
|
"sb_files_tool": True,
|
|
"sb_deploy_tool": True,
|
|
"sb_expose_tool": True,
|
|
"web_search_tool": True,
|
|
"sb_vision_tool": True,
|
|
"sb_image_edit_tool": True,
|
|
"sb_presentation_outline_tool": False,
|
|
"sb_presentation_tool": False,
|
|
|
|
"sb_sheets_tool": True,
|
|
"sb_web_dev_tool": False,
|
|
"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,
|
|
"agent_discovery_tool": True,
|
|
"agent_execution_tool": True
|
|
},
|
|
"is_default": True
|
|
}
|
|
|