File size: 1,473 Bytes
232e999
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# 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