Spaces:
Runtime error
Runtime error
Update modules/llm_handler.py
Browse files- modules/llm_handler.py +1 -1
modules/llm_handler.py
CHANGED
|
@@ -15,7 +15,7 @@ if not groq_api_key:
|
|
| 15 |
MODEL = None
|
| 16 |
else:
|
| 17 |
client = Groq(api_key=groq_api_key)
|
| 18 |
-
MODEL = "llama-3.1-
|
| 19 |
|
| 20 |
def generate_question(interview_type, document_text):
|
| 21 |
if not client:
|
|
|
|
| 15 |
MODEL = None
|
| 16 |
else:
|
| 17 |
client = Groq(api_key=groq_api_key)
|
| 18 |
+
MODEL = "llama-3.1-8b-instant" # Updated to supported model
|
| 19 |
|
| 20 |
def generate_question(interview_type, document_text):
|
| 21 |
if not client:
|