Spaces:
Runtime error
Runtime error
File size: 528 Bytes
512e442 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # ====== Chọn ít nhất 1 provider, có key nào điền key đó ======
# Google Gemini - free 60 req/min, dễ dùng nhất
# Lấy tại: https://aistudio.google.com/app/apikey
GOOGLE_API_KEY=
# Groq - cực nhanh, free 30 req/min cho Llama 3.x
# Lấy tại: https://console.groq.com/keys
GROQ_API_KEY=
# GitHub Models - free cho dev
# Lấy GH PAT tại: https://github.com/settings/tokens (scope: read:user)
GITHUB_TOKEN=
# Provider mặc định khi khởi động (gemini | groq | github)
DEFAULT_PROVIDER=gemini
|