# API Configuration API_BASE_URL=https://api.friendli.ai/dedicated/v1 API_KEY=your_api_key_here # Composio Configuration COMPOSIO_API_KEY=your_composio_api_key_here # Model Configuration INTERACTION_AGENT_MODEL=your_interaction_model_here EXECUTION_AGENT_MODEL=your_execution_model_here EXECUTION_SEARCH_AGENT_MODEL=your_search_model_here SUMMARIZER_MODEL=your_summarizer_model_here EMAIL_CLASSIFIER_MODEL=your_classifier_model_here # Application Configuration OPENPOKE_HOST=0.0.0.0 OPENPOKE_PORT=8001 OPENPOKE_CORS_ALLOW_ORIGINS=* OPENPOKE_ENABLE_DOCS=1 # Web Application Configuration NEXT_PUBLIC_API_URL=http://localhost:8001 # Instructions: # 1. Copy this file to .env: cp .env.example .env # 2. Replace all placeholder values with your actual credentials # 3. Never commit the .env file to version control # 4. Add .env to your .gitignore file # 5. Use docker-compose --env-file .env up for production deployments