jasminemomoko commited on
Commit
e7e02f0
·
verified ·
1 Parent(s): 04646bc

Create app.py

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