-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
69 lines (52 loc) · 1.68 KB
/
Copy path.env.example
File metadata and controls
69 lines (52 loc) · 1.68 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# .env.example
# -------------------------------
# OpenAI API Configuration
# -------------------------------
# Your OpenAI API key for language models, etc.
OPENAI_API_KEY=your-openai-api-key-here
# Model identifiers
OPENAI_MODEL=gpt-4o-mini
OPENAI_EMBED_MODEL=text-embedding-3-small
# -------------------------------
# Sentinel Hub Configuration
# -------------------------------
# Sentinel Hub credentials for remote sensing
SH_CLIENT_ID=your-sentinelhub-client-id
SH_CLIENT_SECRET=your-sentinelhub-client-secret
# -------------------------------
# Data.gov.in API Configuration
# -------------------------------
# API key for accessing various ag-market data
DATA_GOV_IN_API_KEY=your-datagov-api-key
# -------------------------------
# Tuning & Optional Parameters
# -------------------------------
DEFAULT_CROP=Tomato
RAG_TOPK=4
SELLWAIT_DEFAULT_HORIZON_DAYS=7
WX_FORECAST_DAYS=7
WX_SUMMARY_DAYS=3
SENTINEL_AOI_KM=3
SENTINEL_RECENT_DAYS=10
SENTINEL_PREV_DAYS=10
# -------------------------------
# Price Prediction Configuration
# -------------------------------
# Directory path to global pricing model artifacts
PRICE_GLOBAL_MODEL_DIR=/path/to/your/pricing/global/models
# Additional tuning factor for pricing models
PRICE_BAND_WIDEN_K=0.2
STATIC_DIR=backend/static
SELLWAIT_INCLUDE_2WEEK=1
TELEGRAM_BOT_TOKEN="..." # from @BotFather
BACKEND_BASE_URL=http://127.0.0.1:8000
SARVAM_API_KEY="..."
ELEVEN_LABS_API_KEY="..."
CHROMA_TELEMETRY_ENABLED="false"
CHROMADB_DISABLE_TELEMETRY=1
TWILIO_ACCOUNT_SID=...
TWILIO_AUTH_TOKEN=...
TWILIO_SMS_NUMBER=...
TARGET_SMS_NUMBER=...
TWILIO_WHATSAPP_NUMBER=...
TARGET_WHATSAPP_NUMBER=...