Update config.py
Browse files
config.py
CHANGED
|
@@ -9,5 +9,5 @@ class Config:
|
|
| 9 |
MAX_LENGTH = 512
|
| 10 |
# New LLM Configuration
|
| 11 |
# Ensure you set 'OPENAI_API_KEY' in your Hugging Face Space Settings > Secrets
|
| 12 |
-
|
| 13 |
-
|
|
|
|
| 9 |
MAX_LENGTH = 512
|
| 10 |
# New LLM Configuration
|
| 11 |
# Ensure you set 'OPENAI_API_KEY' in your Hugging Face Space Settings > Secrets
|
| 12 |
+
GROQ_API_KEY = os.getenv("GROQ_API_KEY")
|
| 13 |
+
GROQ_MODEL = "llama3-70b-8192" # Cost-effective and fast for RAG
|