|
1 | 1 | # =========================================== |
2 | 2 | # Computer-Using Agent - Environment Variables |
3 | 3 | # =========================================== |
4 | | -# Copy this file to .env.local and fill in your API keys |
5 | | -# All providers below offer FREE tiers! |
| 4 | +# Copy this file to .env.local and add your API keys |
| 5 | +# All providers have FREE tiers! |
| 6 | + |
| 7 | +# ------------------------------------------ |
| 8 | +# AI Model Providers (Required) |
| 9 | +# ------------------------------------------ |
6 | 10 |
|
7 | 11 | # Groq API Key (FREE - https://console.groq.com) |
8 | | -# - 30 requests per minute on free tier |
9 | | -# - Models: llama-3.3-70b-versatile, gemma2-9b-it, mixtral-8x7b |
| 12 | +# Fast inference with Llama, Gemma, Mixtral |
| 13 | +# Rate limit: 30 requests/minute on free tier |
10 | 14 | GROQ_API_KEY=gsk_your_groq_api_key_here |
11 | 15 |
|
12 | 16 | # Google Gemini API Key (FREE - https://aistudio.google.com/apikey) |
13 | | -# - Generous free tier with Gemini 1.5 Flash |
14 | | -# - Models: gemini-2.5-flash, gemini-1.5-flash, gemini-1.5-pro |
| 17 | +# Gemini 2.5 Flash, 1.5 Flash, vision capabilities |
| 18 | +# Generous free tier with 1M+ tokens |
15 | 19 | GOOGLE_GENERATIVE_AI_API_KEY=your_google_api_key_here |
16 | 20 |
|
17 | | -# Optional: Vercel AI Gateway (provides $5/month free credit) |
| 21 | +# ------------------------------------------ |
| 22 | +# Code Execution (Optional - Pro Features) |
| 23 | +# ------------------------------------------ |
| 24 | + |
| 25 | +# E2B API Key (FREE tier - https://e2b.dev) |
| 26 | +# Secure sandboxed Python/JavaScript execution |
| 27 | +# 100 hours/month free |
| 28 | +E2B_API_KEY=e2b_your_api_key_here |
| 29 | + |
| 30 | +# ------------------------------------------ |
| 31 | +# MCP Integrations (Optional) |
| 32 | +# ------------------------------------------ |
| 33 | + |
| 34 | +# GitHub Personal Access Token |
| 35 | +# For repository management, issues, PRs |
| 36 | +# Create at: https://github.com/settings/tokens |
| 37 | +GITHUB_TOKEN=ghp_your_github_token_here |
| 38 | + |
| 39 | +# Slack Bot Token |
| 40 | +# For sending messages and channel management |
| 41 | +# Create at: https://api.slack.com/apps |
| 42 | +SLACK_BOT_TOKEN=xoxb-your-slack-token-here |
| 43 | + |
| 44 | +# Figma Access Token |
| 45 | +# For accessing design files and components |
| 46 | +# Create at: https://www.figma.com/developers/api |
| 47 | +FIGMA_ACCESS_TOKEN=your_figma_token_here |
| 48 | + |
| 49 | +# Google Maps API Key |
| 50 | +# For places search and directions |
| 51 | +# Create at: https://console.cloud.google.com/apis |
| 52 | +GOOGLE_MAPS_API_KEY=your_google_maps_key_here |
| 53 | + |
| 54 | +# ------------------------------------------ |
| 55 | +# Optional: Vercel AI Gateway |
| 56 | +# ------------------------------------------ |
| 57 | + |
| 58 | +# Provides $5/month free credit for multiple providers |
18 | 59 | # Get your key at: https://vercel.com/dashboard/ai/api-keys |
19 | 60 | # AI_GATEWAY_API_KEY=your_ai_gateway_key_here |
0 commit comments