Spaces:
Sleeping
Sleeping
Update app/utils/groq_client.py
Browse files- 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.
|
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 |
"""
|