Spaces:
Running
Running
# GlycoAI Environment Configuration | |
# Copy this file to .env and fill in your actual values | |
# =========================================== | |
# REQUIRED CONFIGURATION | |
# =========================================== | |
# Mistral AI API Key (Required) | |
MISTRAL_API_KEY=your_mistral_api_key_here | |
# Mistral AI Agent ID (Optional but recommended) | |
MISTRAL_AGENT_ID=your_mistral_agent_id_here | |
# =========================================== | |
# OPTIONAL CONFIGURATION | |
# =========================================== | |
# Application Environment (development/production) | |
ENVIRONMENT=development | |
# Debug Mode (true/false) | |
DEBUG=false | |
# Log Level (DEBUG/INFO/WARNING/ERROR) | |
LOG_LEVEL=INFO | |
# =========================================== | |
# SETUP INSTRUCTIONS | |
# =========================================== | |
# For Local Development: | |
# 1. Copy this file: cp .env.example .env | |
# 2. Get your Mistral API key from: https://console.mistral.ai/ | |
# 3. Replace "your_mistral_api_key_here" with your actual key | |
# 4. Optionally add your agent ID if you have one | |
# For Hugging Face Spaces: | |
# 1. Go to your Space settings | |
# 2. Navigate to "Repository secrets" | |
# 3. Add MISTRAL_API_KEY with your actual key | |
# 4. Optionally add MISTRAL_AGENT_ID | |
# =========================================== | |
# SECURITY NOTES | |
# =========================================== | |
# - Never commit the .env file to git | |
# - Keep your API keys secure | |
# - Use different keys for development and production | |
# - Monitor your API usage and costs |