Change model on speaking 2 grading to 4o.

This commit is contained in:
Cristiano Ferreira
2024-08-06 20:28:56 +01:00
parent 470f4cc83b
commit beccf8b501

2
app.py
View File

@@ -839,7 +839,7 @@ def grade_speaking_task_2():
token_count = count_total_tokens(messages)
logging.info("POST - speaking_task_2 - " + str(request_id) + " - Requesting grading of the answer.")
response = make_openai_call(GPT_3_5_TURBO, messages, token_count, ["comment"],
response = make_openai_call(GPT_4_O, messages, token_count, ["comment"],
GRADING_TEMPERATURE)
logging.info("POST - speaking_task_2 - " + str(request_id) + " - Answer graded: " + str(response))