Fix grading parse.

This commit is contained in:
Cristiano Ferreira
2023-08-31 09:55:04 +01:00
parent ca6094c3e7
commit a31489d850
3 changed files with 1228 additions and 7 deletions

2
app.py
View File

@@ -29,7 +29,7 @@ GRADING_TEMPERATURE = 0.1
GEN_QUESTION_TEMPERATURE = 0.9
GPT_3_5_TURBO = "gpt-3.5-turbo"
GPT_3_5_TURBO_16K = "gpt-3.5-turbo-16k"
GRADING_FIELDS = ['overall', 'comment', 'task_response']
GRADING_FIELDS = ['comment', 'overall', 'task_response']
GEN_FIELDS = ['question']
LISTENING_GEN_FIELDS = ['transcript', 'exercise']