.env.example

This commit is contained in:
marko-kraemer 2024-11-18 08:11:38 +01:00
parent 65a350f21f
commit 13e98678e8
3 changed files with 6 additions and 1 deletions

View File

@ -9,7 +9,7 @@ See [How It Works](#how-it-works) for an explanation of this flow.
## Core Components ## Core Components
- **Threads**: Manage Messages[] as threads. - **Threads**: Manage Messages[] as threads.
- **Tools**: Register code as callable tools with definitions in both OpenAPI and XML - **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 - **State Management**: Thread-safe JSON key-value state management
- **LLM**: +100 LLMs using the OpenAI I/O Format powered by LiteLLM - **LLM**: +100 LLMs using the OpenAI I/O Format powered by LiteLLM

View File

@ -0,0 +1,4 @@
OPENAI_API_KEY=
ANTHROPIC_API_KEY=
GROQ_API_KEY=
AGENTOPS_API_KEY=

View File

@ -59,6 +59,7 @@ STARTER_EXAMPLES = {
"agent.py": "agents/simple_web_dev/agent.py", "agent.py": "agents/simple_web_dev/agent.py",
"tools/files_tool.py": "agents/simple_web_dev/tools/files_tool.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", "tools/terminal_tool.py": "agents/simple_web_dev/tools/terminal_tool.py",
".env.example": "agents/.env.example"
} }
} }
} }