CZ-English / exam_maker /config.py
Yu Chen
Update assistant model version to 'gpt-4.1-mini' in config.py
b8b03e3
raw
history blame contribute delete
569 Bytes
import os
OPENAI_API_KEY = os.getenv('OPENAI_API_KEY')
CORRECT_PASSWORD = os.getenv('ui_password')
ASSISTANT_ID = os.getenv('assistant_id')
GOOGLE_DRIVE_FOLDER_ID = os.getenv('google_drive_folder_id')
ASSISTANT_MODEL = 'gpt-4.1-mini'
ASSISTANT_NAME = "English reading comprehension passages and question generation"
ASSISTANT_DESCRIPTION = "Generate an English passage based on the conditions provided by the teacher. Then, create comprehension questions based on the passage and rewrite the questions into different formats."
VECTOR_STORE_NAME = "english-question"