File size: 1,042 Bytes
c024705
 
 
 
 
 
818ef98
c024705
 
818ef98
c024705
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d4d8805
c024705
 
 
 
 
 
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
# Environment Configuration
FLASK_ENV=development
DEBUG=True

# Server Configuration
SERVER_HOST=0.0.0.0
SERVER_PORT=7860

# For production hosting (Heroku, Railway, etc.)
PORT=7860 

# API Configuration (leave empty for relative URLs)
API_BASE_URL=
FRONTEND_URL=

# Database Configuration
DB_FILE=storage/conversations.db
STORAGE_DIR=storage
DATA_DIR=data

# Email Configuration for AI Mental Health Chatbot
SMTP_SERVER=smtp.gmail.com
SMTP_PORT=587
SMTP_USERNAME=it.elias38@gmail.com
SMTP_PASSWORD=your-app-password-here
FROM_EMAIL=noreply@aimhsa.rw

# SMS Configuration
HDEV_SMS_API_ID=HDEV-23fb1b59-aec0-4aef-a351-bfc1c3aa3c52-ID
HDEV_SMS_API_KEY=HDEV-6e36c286-19bb-4b45-838e-8b5cd0240857-KEY

# Chat Model Configuration
CHAT_MODEL=meta-llama/llama-4-maverick
EMBED_MODEL=nomic-embed-text
SENT_EMBED_MODEL=nomic-embed-text
OLLAMA_BASE_URL=https://openrouter.ai/api/v1
OLLAMA_API_KEY=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

# Security Note: Never commit this file with real credentials to version control