import os INIT_MODELS = [ # ("meta-llama/Llama-4-Scout-17B-16E-Instruct", "together"), ("Qwen/Qwen3-32B", "nebius"), ("Qwen/Qwen2.5-72B-Instruct", "together"), ("deepseek-ai/DeepSeek-R1", "together"), ("google/gemma-3-27b-it", "nebius"), ] MODELS = [m[0] for m in INIT_MODELS] TASK = os.getenv("TASK") # With storage HF_TOKEN = os.getenv("HF_TOKEN") ORG_NAME = os.getenv("ORG_NAME")