Files
ds-fire-fighter/config.py
T
OwusuBlessing 49e79e0fdd fix mixup
2025-04-09 01:16:22 +01:00

23 lines
662 B
Python

QUIZ_TYPES = {
1: {
"name": "Single Line Text Inputs",
"format": """
{"question": "Your question here", "correct_answer": "Your correct answer here"}
"""
},
2: {
"name": "Multiple Choice Questions",
"format": """
{"question": "Your question here", "options": ["Option 1", "Option 2", "Option 3"], "correct_answer": "Correct Option"}
"""
},
3: {
"name": "True or False Questions",
"format": """
{"question": "Your question here", "options": ["True", "False"], "correct_answer": "True or False"}
"""
}
}
MODEL = "gpt-4o-mini"
TEMPERATURE = 0.7