File size: 1,283 Bytes
22e8b31 633b045 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
THEME = "gstaff/sketch"
UNSELECTED_VAR_NAME = "Select Variable..."
UNSELECTED_MODEL_NAME = "Select Model..."
AVAILABLE_MODELS = {
"OpenAI/gpt-4o": {
"model": "gpt-4o-2024-11-20",
},
"OpenAI/gpt-4o-mini": {
"model": "gpt-4o-mini-2024-07-18",
},
"OpenAI/gpt-3.5-turbo": {
"model": "gpt-3.5-turbo-0125",
},
"Anthropic/claude-3-7-sonnet": {
"model": "claude-3-7-sonnet-20250219",
},
"Anthropic/claude-3-5-sonnet": {
"model": "claude-3-5-sonnet-20241022",
},
"Anthropic/claude-3-5-haiku": {
"model": "claude-3-5-haiku-20241022",
},
"Cohere/command-r": {
"model": "command-r-08-2024",
},
"Cohere/command-r-plus": {
"model": "command-r-plus-08-2024",
},
"Cohere/command-r7b": {
"model": "command-r7b-12-2024",
},
}
DEFAULT_SELECTIONS = {
"tossup": {
"simple_workflow": False,
"model": "OpenAI/gpt-4o-mini",
"temperature": 0.2,
"buzz_threshold": 0.85,
"early_stop": True,
},
"bonus": {
"simple_workflow": False,
"model": "OpenAI/gpt-4o-mini",
"temperature": 0.2,
"buzz_threshold": 0.85,
"early_stop": True,
},
}
DAILY_SUBMISSION_LIMIT_PER_USER = 5
|