Update app.py
Browse files
app.py
CHANGED
|
@@ -57,7 +57,7 @@ def analyze_attrition_with_llm(df_dict, hr_query):
|
|
| 57 |
function_call="auto"
|
| 58 |
)
|
| 59 |
|
| 60 |
-
print(response) # Debugging: Print response
|
| 61 |
|
| 62 |
# Handle function call response properly
|
| 63 |
if response.choices[0].message.function_call:
|
|
|
|
| 57 |
function_call="auto"
|
| 58 |
)
|
| 59 |
|
| 60 |
+
print(response.output) # Debugging: Print response
|
| 61 |
|
| 62 |
# Handle function call response properly
|
| 63 |
if response.choices[0].message.function_call:
|