Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -2,7 +2,7 @@ from huggingface_hub import InferenceClient
|
|
2 |
import gradio as gr
|
3 |
|
4 |
client = InferenceClient(
|
5 |
-
"
|
6 |
)
|
7 |
|
8 |
|
@@ -89,6 +89,6 @@ gr.ChatInterface(
|
|
89 |
fn=generate,
|
90 |
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, layout="panel"),
|
91 |
additional_inputs=additional_inputs,
|
92 |
-
title="
|
93 |
concurrency_limit=10,
|
94 |
).launch(show_api=False)
|
|
|
2 |
import gradio as gr
|
3 |
|
4 |
client = InferenceClient(
|
5 |
+
"mistralai/Mistral-7B-Instruct-v0.2"
|
6 |
)
|
7 |
|
8 |
|
|
|
89 |
fn=generate,
|
90 |
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, layout="panel"),
|
91 |
additional_inputs=additional_inputs,
|
92 |
+
title="Mistral-7B-Instruct-v0.2",
|
93 |
concurrency_limit=10,
|
94 |
).launch(show_api=False)
|