Spaces:
Running
Running
remove api
Browse files
app.py
CHANGED
@@ -181,7 +181,7 @@ def generate_groq_response(prompt, agent_type, temperature=0.7):
|
|
181 |
"report_agent": """You are an interview assessment specialist. Create a detailed, constructive report of the interview without scoring or grading the candidate. Identify correct answers with green text and areas for improvement with red text. Focus on suggesting specific technical topics the candidate should study further rather than platforms or resources. Be encouraging and specific in your feedback."""
|
182 |
}
|
183 |
|
184 |
-
client = Groq(api_key="
|
185 |
response = client.chat.completions.create(
|
186 |
model="llama-3.3-70b-versatile",
|
187 |
messages=[
|
|
|
181 |
"report_agent": """You are an interview assessment specialist. Create a detailed, constructive report of the interview without scoring or grading the candidate. Identify correct answers with green text and areas for improvement with red text. Focus on suggesting specific technical topics the candidate should study further rather than platforms or resources. Be encouraging and specific in your feedback."""
|
182 |
}
|
183 |
|
184 |
+
client = Groq(api_key=os.getenv("GROQ_API_KEY"))
|
185 |
response = client.chat.completions.create(
|
186 |
model="llama-3.3-70b-versatile",
|
187 |
messages=[
|