Change default model to Qwen for now
Browse files
app.py
CHANGED
@@ -77,7 +77,7 @@ def model_in_list(model):
|
|
77 |
key=os.environ.get('RANDOM_SEED', 'kcOtfNHA+e')
|
78 |
o = random.Random(f"{key}-{datetime.date.today().strftime('%Y-%m-%d')}")
|
79 |
initial_model = o.choice(model_choices)[1]
|
80 |
-
initial_model =
|
81 |
# this doesn't work in HF spaces because we're iframed :(
|
82 |
# def initial_model(referer=None):
|
83 |
# return REFLECTION
|
|
|
77 |
key=os.environ.get('RANDOM_SEED', 'kcOtfNHA+e')
|
78 |
o = random.Random(f"{key}-{datetime.date.today().strftime('%Y-%m-%d')}")
|
79 |
initial_model = o.choice(model_choices)[1]
|
80 |
+
initial_model = QWEN25_72B
|
81 |
# this doesn't work in HF spaces because we're iframed :(
|
82 |
# def initial_model(referer=None):
|
83 |
# return REFLECTION
|