Spaces:
Runtime error
Runtime error
add minotaur 15b 8k
Browse files
app.py
CHANGED
@@ -148,9 +148,11 @@ AVAILABLE_MODELS = {
|
|
148 |
"wizardlm-13b": ("k0chcxsgukov8x", prompt_instruct),
|
149 |
"selfee-13b": ("50rnvxln9bmf4c", prompt_instruct),
|
150 |
"robin-v2-13b": ("4cw4vwzzhsl5pq", prompt_human_instruct, ["###Human"]),
|
|
|
151 |
}
|
152 |
|
153 |
OAAIC_MODELS = [
|
|
|
154 |
"minotaur-13b-fixed",
|
155 |
"manticore-13b-chat",
|
156 |
# "minotaur-mpt-7b",
|
@@ -159,6 +161,7 @@ OAAIC_MODELS_ROLEPLAY = {
|
|
159 |
"manticore-13b-chat-roleplay": ("u6tv84bpomhfei", prompt_roleplay),
|
160 |
"minotaur-13b-roleplay": ("6f1baphxjpjk7b", prompt_roleplay),
|
161 |
"minotaur-13b-fixed-roleplay": ("sjnkstd3e40ojj", prompt_roleplay),
|
|
|
162 |
# "minotaur-mpt-7b": ("vm1wcsje126x1x", prompt_chat),
|
163 |
}
|
164 |
|
@@ -214,8 +217,8 @@ def chat(history1, history2, system_msg, state):
|
|
214 |
arena_bots = list(AVAILABLE_MODELS.keys())
|
215 |
random.shuffle(arena_bots)
|
216 |
# bootstrap a new bot into the arena more often
|
217 |
-
if "
|
218 |
-
arena_bots.insert(random.choice([0,1]), "
|
219 |
|
220 |
battle = arena_bots[0:2]
|
221 |
model1 = get_model_pipeline(battle[0])
|
|
|
148 |
"wizardlm-13b": ("k0chcxsgukov8x", prompt_instruct),
|
149 |
"selfee-13b": ("50rnvxln9bmf4c", prompt_instruct),
|
150 |
"robin-v2-13b": ("4cw4vwzzhsl5pq", prompt_human_instruct, ["###Human"]),
|
151 |
+
"minotaur-15b-8k": ("zdk804d2txtt68", prompt_chat),
|
152 |
}
|
153 |
|
154 |
OAAIC_MODELS = [
|
155 |
+
"minotaur-15b-8k",
|
156 |
"minotaur-13b-fixed",
|
157 |
"manticore-13b-chat",
|
158 |
# "minotaur-mpt-7b",
|
|
|
161 |
"manticore-13b-chat-roleplay": ("u6tv84bpomhfei", prompt_roleplay),
|
162 |
"minotaur-13b-roleplay": ("6f1baphxjpjk7b", prompt_roleplay),
|
163 |
"minotaur-13b-fixed-roleplay": ("sjnkstd3e40ojj", prompt_roleplay),
|
164 |
+
"minotaur-15b-8k-roleplay": ("zdk804d2txtt68", prompt_roleplay),
|
165 |
# "minotaur-mpt-7b": ("vm1wcsje126x1x", prompt_chat),
|
166 |
}
|
167 |
|
|
|
217 |
arena_bots = list(AVAILABLE_MODELS.keys())
|
218 |
random.shuffle(arena_bots)
|
219 |
# bootstrap a new bot into the arena more often
|
220 |
+
if "minotaur-15b-8k" not in arena_bots[0:2] and random.choice([True, False, False]):
|
221 |
+
arena_bots.insert(random.choice([0,1]), "minotaur-15b-8k")
|
222 |
|
223 |
battle = arena_bots[0:2]
|
224 |
model1 = get_model_pipeline(battle[0])
|