CoolFace
Apppublic

RohanExploit/Meta-hackathon

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
.env.example19 linesDownload Raw Back to root
1# ── Required ─────────────────────────────────────────────────────────2GROQ_API_KEY=gsk_your_groq_api_key_here3 4# ── Retail Environment Server ────────────────────────────────────────5ENV_BASE_URL=http://127.0.0.1:80006 7# ── OpenAI-compatible API (hackathon requirement) ────────────────────8API_BASE_URL=https://router.huggingface.co/v19MODEL_NAME=meta-llama/Llama-3.1-8B-Instruct10HF_TOKEN=hf_your_token_here11 12# ── RAG Pipeline ─────────────────────────────────────────────────────13FAISS_INDEX_PATH=./vectorstore14 15# ── Optional: Use local Ollama for the router instead of Groq ────────16USE_OLLAMA_ROUTER=false17OLLAMA_BASE_URL=http://localhost:1143418OLLAMA_ROUTER_MODEL=qwen2.5-coder:7b19