pk75 commited on
Commit
0a860cd
·
verified ·
1 Parent(s): dbcc933

Update modules/llm_handler.py

Browse files
Files changed (1) hide show
  1. 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-70b-versatile" # Updated to supported model
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: