Spaces:
Runtime error
Runtime error
File size: 342 Bytes
571aca4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# AgriQA Assistant Environment Configuration
# Hugging Face Model Path
MODEL_PATH=nada013/agriqa-assistant
# API Server Configuration
PORT=7860
# Hugging Face Cache Settings
TRANSFORMERS_CACHE=./cache
HF_HOME=./cache
# Model Generation Settings (optional overrides)
MAX_NEW_TOKENS=512
TEMPERATURE=0.3
TOP_P=0.85
TOP_K=40
|