Sheepbon commited on
Commit
a16c781
·
verified ·
1 Parent(s): 173fe06

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -3,6 +3,8 @@ from huggingface_hub import InferenceClient
3
  import gradio as gr
4
  import random
5
 
 
 
6
  def respond(message, history):
7
  messages = [{"role":"system", "content":"You are a friendly chatbot! :)"}]
8
 
 
3
  import gradio as gr
4
  import random
5
 
6
+ client = InferenceClient("Qwen/Qwen2.5-72B-Instruct")
7
+
8
  def respond(message, history):
9
  messages = [{"role":"system", "content":"You are a friendly chatbot! :)"}]
10