Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -2,23 +2,22 @@ import gradio as gr
|
|
| 2 |
import random
|
| 3 |
from huggingface_hub import InferenceClient
|
| 4 |
|
| 5 |
-
client = InferenceClient(
|
| 6 |
|
| 7 |
def respond(message, history):
|
| 8 |
-
messages = [{
|
| 9 |
-
|
| 10 |
if history:
|
| 11 |
messages.extend(history)
|
| 12 |
-
messages.append({
|
| 13 |
-
|
| 14 |
-
|
| 15 |
|
| 16 |
def echo(message, history):
|
| 17 |
return message
|
| 18 |
|
| 19 |
def yes_no(message, history):
|
| 20 |
-
responses = [
|
| 21 |
return random.choice(responses)
|
| 22 |
|
| 23 |
-
chatbot = gr.ChatInterface(respond, type=
|
| 24 |
chatbot.launch()
|
|
|
|
| 2 |
import random
|
| 3 |
from huggingface_hub import InferenceClient
|
| 4 |
|
| 5 |
+
client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
|
| 6 |
|
| 7 |
def respond(message, history):
|
| 8 |
+
messages = [{"role": "system", "content": "You are a friendly chatbot."}]
|
|
|
|
| 9 |
if history:
|
| 10 |
messages.extend(history)
|
| 11 |
+
messages.append({"role": "user", "content": message})
|
| 12 |
+
response = client.chat_completion(messages, max_tokens = 100)
|
| 13 |
+
return response["choices"][0]["message"]["content"].strip()
|
| 14 |
|
| 15 |
def echo(message, history):
|
| 16 |
return message
|
| 17 |
|
| 18 |
def yes_no(message, history):
|
| 19 |
+
responses = ["Yes", "No"]
|
| 20 |
return random.choice(responses)
|
| 21 |
|
| 22 |
+
chatbot = gr.ChatInterface(respond, type="messages")
|
| 23 |
chatbot.launch()
|