steef68 commited on
Commit
4d855bf
·
verified ·
1 Parent(s): 45e9955

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -2,7 +2,7 @@ from huggingface_hub import InferenceClient
2
  import gradio as gr
3
 
4
  client = InferenceClient(
5
- "meta-llama/Llama-2-7b-chat-hf"
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="Mixtral 8X7B-v0.2",
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)