Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wip better agent #10862

Draft
wants to merge 10 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions x/henry/mp-sandbox-agent/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Required API keys
OPENAI_API_KEY=sk-xxx
ANTHROPIC_API_KEY=sk-ant-xxx
SERPAPI_API_KEY=xxx
FIRECRAWL_API_KEY=xxx

# LLM Configuration
AI_PROVIDER=openai # openai or anthropic
AI_MODEL=gpt-4o # For OpenAI: gpt-4o, gpt-4-turbo, gpt-4, gpt-3.5-turbo
# For Anthropic: claude-3-7-sonnet-20250219, claude-3-5-sonnet-20241022, claude-3-5-haiku-20241022,
# claude-3-opus-20240229, claude-3-sonnet-20240229, claude-3-haiku-20240307
AI_TEMPERATURE=0.0 # 0.0 to 1.0
AI_MAX_TOKENS=4096 # Maximum tokens to generate

# Logging
LOG_LEVEL=INFO # ERROR, WARN, INFO, DEBUG, TRACE
Loading