Spaces:
Build error
Build error
Update .env.example
Browse files- .env.example +4 -4
.env.example
CHANGED
|
@@ -1,11 +1,11 @@
|
|
| 1 |
# Groq API Key — get free at console.groq.com
|
| 2 |
GROQ_API_KEY=gsk_your_groq_key_here
|
| 3 |
|
| 4 |
-
# Groq model — all free on Groq
|
| 5 |
# Options: llama-3.1-8b-instant | llama-3.1-70b-versatile | mixtral-8x7b-32768 | gemma2-9b-it
|
| 6 |
GROQ_MODEL=llama-3.1-8b-instant
|
| 7 |
|
| 8 |
-
# Embedding model (runs locally, no API
|
| 9 |
EMBEDDING_MODEL=sentence-transformers/all-MiniLM-L6-v2
|
| 10 |
|
| 11 |
# RAG settings
|
|
@@ -13,8 +13,8 @@ CHUNK_SIZE=512
|
|
| 13 |
CHUNK_OVERLAP=64
|
| 14 |
TOP_K_RETRIEVAL=5
|
| 15 |
|
| 16 |
-
# Langfuse (OPTIONAL
|
| 17 |
-
# Leave blank to disable
|
| 18 |
LANGFUSE_PUBLIC_KEY=
|
| 19 |
LANGFUSE_SECRET_KEY=
|
| 20 |
LANGFUSE_HOST=https://cloud.langfuse.com
|
|
|
|
| 1 |
# Groq API Key — get free at console.groq.com
|
| 2 |
GROQ_API_KEY=gsk_your_groq_key_here
|
| 3 |
|
| 4 |
+
# Groq model — all free on Groq free tier
|
| 5 |
# Options: llama-3.1-8b-instant | llama-3.1-70b-versatile | mixtral-8x7b-32768 | gemma2-9b-it
|
| 6 |
GROQ_MODEL=llama-3.1-8b-instant
|
| 7 |
|
| 8 |
+
# Embedding model (runs locally, no API cost)
|
| 9 |
EMBEDDING_MODEL=sentence-transformers/all-MiniLM-L6-v2
|
| 10 |
|
| 11 |
# RAG settings
|
|
|
|
| 13 |
CHUNK_OVERLAP=64
|
| 14 |
TOP_K_RETRIEVAL=5
|
| 15 |
|
| 16 |
+
# Langfuse observability (OPTIONAL — free tier at cloud.langfuse.com)
|
| 17 |
+
# Leave blank to disable silently
|
| 18 |
LANGFUSE_PUBLIC_KEY=
|
| 19 |
LANGFUSE_SECRET_KEY=
|
| 20 |
LANGFUSE_HOST=https://cloud.langfuse.com
|