yasserrmd commited on
Commit
f98e663
·
verified ·
1 Parent(s): e0390ef

Update app/utils/groq_client.py

Browse files
Files changed (1) hide show
  1. app/utils/groq_client.py +1 -3
app/utils/groq_client.py CHANGED
@@ -9,9 +9,7 @@ class GroqClient:
9
  if not self.api_key:
10
  raise ValueError("Groq API key not found. Please set GROQ_API_KEY in config.")
11
  self.client = Groq(api_key=self.api_key)
12
- self.model = "llama-3.1-70b-versatile" # Corrected model name based on common Groq offerings, will use this for now.
13
- # User specified llama-3.3-70b-versatile, which might be a typo or a very new model.
14
- # If llama-3.1-70b-versatile is not available, I will try to find the closest match or inform the user.
15
 
16
  def generate_interrogation_questions(self, case_details: str, suspect_profile: str, evidence_summary: str) -> list[str]:
17
  """
 
9
  if not self.api_key:
10
  raise ValueError("Groq API key not found. Please set GROQ_API_KEY in config.")
11
  self.client = Groq(api_key=self.api_key)
12
+ self.model = "llama-3.3-70b-versatile"
 
 
13
 
14
  def generate_interrogation_questions(self, case_details: str, suspect_profile: str, evidence_summary: str) -> list[str]:
15
  """