jyotikadiyala commited on
Commit
ba811e2
·
verified ·
1 Parent(s): f247a3b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -3
app.py CHANGED
@@ -1,8 +1,24 @@
1
  import gradio as gr
 
2
 
3
- def echo(message, history):
4
- return message
5
 
6
- chatbot = gr.ChatInterface(echo)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
 
8
  chatbot.launch()
 
1
  import gradio as gr
2
+ from huggingface_hub import InferenceClient
3
 
4
+ client = InferenceClient("Qwen/Qwen2.5-7B-Instruct")
 
5
 
6
+ def respond(message, history):
7
+
8
+ messages = [{"role": "system", "content": "You are a friendly chatbot."}]
9
+
10
+ if history:
11
+ messages.extend(history)
12
+
13
+ messages.append({"role": "user", "content": message})
14
+
15
+ response = client.chat_completion(
16
+ messages,
17
+ max_tokens=100
18
+ )
19
+
20
+ return response.choices[0].message.content.strip()
21
+
22
+ chatbot = gr.ChatInterface(respond)
23
 
24
  chatbot.launch()