mirror of https://github.com/kortix-ai/suna.git
.env.example
This commit is contained in:
parent
65a350f21f
commit
13e98678e8
|
@ -9,7 +9,7 @@ See [How It Works](#how-it-works) for an explanation of this flow.
|
|||
## Core Components
|
||||
- **Threads**: Manage Messages[] as threads.
|
||||
- **Tools**: Register code as callable tools with definitions in both OpenAPI and XML
|
||||
- **Response Processing**: Support for both native-LLM OpenAPI and XML-based tool calling
|
||||
- **Response Processing**: Support for native-LLM OpenAPI and XML-based tool calling
|
||||
- **State Management**: Thread-safe JSON key-value state management
|
||||
- **LLM**: +100 LLMs using the OpenAI I/O Format powered by LiteLLM
|
||||
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
OPENAI_API_KEY=
|
||||
ANTHROPIC_API_KEY=
|
||||
GROQ_API_KEY=
|
||||
AGENTOPS_API_KEY=
|
|
@ -59,6 +59,7 @@ STARTER_EXAMPLES = {
|
|||
"agent.py": "agents/simple_web_dev/agent.py",
|
||||
"tools/files_tool.py": "agents/simple_web_dev/tools/files_tool.py",
|
||||
"tools/terminal_tool.py": "agents/simple_web_dev/tools/terminal_tool.py",
|
||||
".env.example": "agents/.env.example"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue