120 lines
3.2 KiB
Python
120 lines
3.2 KiB
Python
GRADING_TEMPERATURE = 0.1
|
|
TIPS_TEMPERATURE = 0.2
|
|
GEN_QUESTION_TEMPERATURE = 0.7
|
|
GPT_3_5_TURBO = "gpt-3.5-turbo"
|
|
GPT_3_5_TURBO_16K = "gpt-3.5-turbo-16k"
|
|
GPT_3_5_TURBO_INSTRUCT = "gpt-3.5-turbo-instruct"
|
|
GRADING_FIELDS = ['comment', 'overall', 'task_response']
|
|
GEN_FIELDS = ['topic']
|
|
GEN_TEXT_FIELDS = ['title']
|
|
LISTENING_GEN_FIELDS = ['transcript', 'exercise']
|
|
|
|
FIREBASE_BUCKET = 'mti-ielts.appspot.com'
|
|
AUDIO_FILES_PATH = 'download-audio/'
|
|
FIREBASE_LISTENING_AUDIO_FILES_PATH = 'listening_recordings/'
|
|
|
|
VIDEO_FILES_PATH = 'download-video/'
|
|
FIREBASE_SPEAKING_VIDEO_FILES_PATH = 'speaking_videos/'
|
|
|
|
topics = [
|
|
"Art and Creativity",
|
|
"History of Ancient Civilizations",
|
|
"Environmental Conservation",
|
|
"Space Exploration",
|
|
"Artificial Intelligence",
|
|
"Climate Change",
|
|
"World Religions",
|
|
"The Human Brain",
|
|
"Renewable Energy",
|
|
"Cultural Diversity",
|
|
"Modern Technology Trends",
|
|
"Women's Rights",
|
|
"Sustainable Agriculture",
|
|
"Globalization",
|
|
"Natural Disasters",
|
|
"Cybersecurity",
|
|
"Philosophy of Ethics",
|
|
"Robotics",
|
|
"Health and Wellness",
|
|
"Literature and Classics",
|
|
"World Geography",
|
|
"Music and Its Influence",
|
|
"Human Rights",
|
|
"Social Media Impact",
|
|
"Food Sustainability",
|
|
"Economics and Markets",
|
|
"Human Evolution",
|
|
"Political Systems",
|
|
"Mental Health Awareness",
|
|
"Quantum Physics",
|
|
"Biodiversity",
|
|
"Education Reform",
|
|
"Animal Rights",
|
|
"The Industrial Revolution",
|
|
"Future of Work",
|
|
"Film and Cinema",
|
|
"Genetic Engineering",
|
|
"Ancient Mythology",
|
|
"Climate Policy",
|
|
"Space Travel",
|
|
"Renewable Energy Sources",
|
|
"Cultural Heritage Preservation",
|
|
"Modern Art Movements",
|
|
"Immigration Issues",
|
|
"Sustainable Transportation",
|
|
"The History of Medicine",
|
|
"Artificial Neural Networks",
|
|
"Climate Adaptation",
|
|
"Philosophy of Existence",
|
|
"Augmented Reality",
|
|
"Yoga and Meditation",
|
|
"Literary Genres",
|
|
"World Oceans",
|
|
"Gender Equality",
|
|
"Social Networking",
|
|
"Sustainable Fashion",
|
|
"International Trade",
|
|
"Prehistoric Era",
|
|
"Democracy and Governance",
|
|
"Postcolonial Literature",
|
|
"Geopolitics",
|
|
"Psychology and Behavior",
|
|
"Nanotechnology",
|
|
"Endangered Species",
|
|
"Education Technology",
|
|
"Renaissance Art",
|
|
"Renewable Energy Policy",
|
|
"Cultural Festivals",
|
|
"Modern Architecture",
|
|
"Climate Resilience",
|
|
"Artificial Life",
|
|
"Fitness and Nutrition",
|
|
"Classic Literature Adaptations",
|
|
"World History Wars",
|
|
"Ethical Dilemmas",
|
|
"Internet of Things (IoT)",
|
|
"Meditation Practices",
|
|
"Literary Symbolism",
|
|
"Marine Conservation",
|
|
"Social Justice Movements",
|
|
"Sustainable Tourism",
|
|
"International Finance",
|
|
"Ancient Philosophy",
|
|
"Cold War Era",
|
|
"Behavioral Economics",
|
|
"Space Colonization",
|
|
"Clean Energy Initiatives",
|
|
"Cultural Exchange",
|
|
"Modern Sculpture",
|
|
"Climate Mitigation",
|
|
"Artificial Intelligence Ethics",
|
|
"Mindfulness",
|
|
"Literary Criticism",
|
|
"Wildlife Conservation",
|
|
"Political Activism",
|
|
"Renewable Energy Innovations",
|
|
"History of Mathematics",
|
|
"Human-Computer Interaction",
|
|
"Global Health",
|
|
"Cultural Appropriation"
|
|
] |