remove print debug statement

modified:   app.py
This commit is contained in:
Russell Ballestrini 2024-08-03 13:07:42 -04:00
parent 8cca256c89
commit 018671a8c1

1
app.py
View file

@ -2339,7 +2339,6 @@ def generate_ai_feedback(category, question, user_response, tokens_for_ai):
]
try:
print(messages)
completion = openai_client.chat.completions.create(
model=model_name, messages=messages, max_tokens=1000, temperature=0.7
)