| # Biomni Environment Configuration | |
| # Copy this file to .env and fill in your actual API keys | |
| # Required: Anthropic API Key for Claude models | |
| ANTHROPIC_API_KEY=your_anthropic_api_key_here | |
| # Optional: OpenAI API Key (if using OpenAI models) | |
| OPENAI_API_KEY=your_openai_api_key_here | |
| # Optional: AWS Bedrock Configuration (if using AWS Bedrock models) | |
| AWS_BEARER_TOKEN_BEDROCK=your_bedrock_api_key_here | |
| AWS_REGION=us-east-1 | |
| # Optional: Custom model serving configuration | |
| # CUSTOM_MODEL_BASE_URL=http://localhost:8000/v1 | |
| # CUSTOM_MODEL_API_KEY=your_custom_api_key_here | |
| # Optional: Biomni data path (defaults to ./data) | |
| # BIOMNI_DATA_PATH=/path/to/your/data | |
| # Optional: Timeout settings | |
| # BIOMNI_TIMEOUT_SECONDS=600 | |