Spaces:
Running
Running
Mixtral-8x22B
Browse files
app.py
CHANGED
@@ -91,7 +91,7 @@ def respond(
|
|
91 |
_model_name = "meta-llama/Llama-2-70b-hf"
|
92 |
elif model_name == "Mistral-7B-v0.1":
|
93 |
_model_name = "mistralai/Mistral-7B-v0.1"
|
94 |
-
elif model_name == "
|
95 |
_model_name = "mistralai/Mixtral-8x22B"
|
96 |
elif model_name == "Qwen1.5-72B":
|
97 |
_model_name = "Qwen/Qwen1.5-72B"
|
@@ -168,7 +168,7 @@ with gr.Blocks(gr.themes.Soft(), js=js_code_label) as demo:
|
|
168 |
|
169 |
**Talk with __BASE__ LLMs which are not fine-tuned at all.**
|
170 |
""")
|
171 |
-
model_name = gr.Radio(["Llama-3-8B", "Llama-3-70B", "Mistral-7B-v0.1", "
|
172 |
with gr.Column():
|
173 |
together_api_key = gr.Textbox(label="π Together APIKey", placeholder="Enter your Together API Key. Leave it blank if you want to use the default API key.", type="password", elem_id="api_key")
|
174 |
with gr.Column():
|
|
|
91 |
_model_name = "meta-llama/Llama-2-70b-hf"
|
92 |
elif model_name == "Mistral-7B-v0.1":
|
93 |
_model_name = "mistralai/Mistral-7B-v0.1"
|
94 |
+
elif model_name == "Mixtral-8x22B":
|
95 |
_model_name = "mistralai/Mixtral-8x22B"
|
96 |
elif model_name == "Qwen1.5-72B":
|
97 |
_model_name = "Qwen/Qwen1.5-72B"
|
|
|
168 |
|
169 |
**Talk with __BASE__ LLMs which are not fine-tuned at all.**
|
170 |
""")
|
171 |
+
model_name = gr.Radio(["Llama-3-8B", "Llama-3-70B", "Mistral-7B-v0.1", "Mixtral-8x22B", "Yi-34B", "Llama-2-7B", "Llama-2-70B"], value="Llama-3-8B", label="Base LLM name")
|
172 |
with gr.Column():
|
173 |
together_api_key = gr.Textbox(label="π Together APIKey", placeholder="Enter your Together API Key. Leave it blank if you want to use the default API key.", type="password", elem_id="api_key")
|
174 |
with gr.Column():
|