mirror of https://github.com/kortix-ai/suna.git
9 lines
486 B
Python
9 lines
486 B
Python
# Available AI models
|
|
AI_MODELS = [
|
|
'gpt-4o',
|
|
'gpt-4o-mini',
|
|
'anthropic/claude-3-5-sonnet-20240620'
|
|
]
|
|
|
|
# Standard system message
|
|
STANDARD_SYSTEM_MESSAGE = """You are a friendly and intelligent assistant, always ready to help with a wide range of tasks. Your responses should be helpful, accurate, and tailored to the user's needs. If you're unsure about something, don't hesitate to ask for clarification. Your goal is to provide the best possible assistance to the user.""" |