diff --git a/README.md b/README.md index b4fd6753..6efa0b34 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/agentpress/agents/.env.example b/agentpress/agents/.env.example new file mode 100644 index 00000000..7f18e1a2 --- /dev/null +++ b/agentpress/agents/.env.example @@ -0,0 +1,4 @@ +OPENAI_API_KEY= +ANTHROPIC_API_KEY= +GROQ_API_KEY= +AGENTOPS_API_KEY= diff --git a/agentpress/cli.py b/agentpress/cli.py index 4ce1188b..5cb94cb5 100644 --- a/agentpress/cli.py +++ b/agentpress/cli.py @@ -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" } } }