Spaces:
Sleeping
Sleeping
Commit
·
18ff64a
1
Parent(s):
54915c2
Update space
Browse files
app.py
CHANGED
@@ -1,4 +1,3 @@
|
|
1 |
-
# This is my first chatbot example
|
2 |
from transformers import pipeline, Conversation
|
3 |
import gradio as gr
|
4 |
|
@@ -7,12 +6,11 @@ chatbot = pipeline(model="facebook/blenderbot-400M-distill", task="conversationa
|
|
7 |
message_list = []
|
8 |
response_list = []
|
9 |
|
10 |
-
|
11 |
def vanilla_chatbot(message, history):
|
12 |
conversation = Conversation(text=message, past_user_inputs=message_list, generated_responses=response_list)
|
13 |
conversation = chatbot(conversation)
|
14 |
|
15 |
-
return conversation
|
16 |
|
17 |
demo_chatbot = gr.ChatInterface(vanilla_chatbot, title="Vanilla Chatbot", description="Enter text to start chatting.")
|
18 |
|
|
|
|
|
1 |
from transformers import pipeline, Conversation
|
2 |
import gradio as gr
|
3 |
|
|
|
6 |
message_list = []
|
7 |
response_list = []
|
8 |
|
|
|
9 |
def vanilla_chatbot(message, history):
|
10 |
conversation = Conversation(text=message, past_user_inputs=message_list, generated_responses=response_list)
|
11 |
conversation = chatbot(conversation)
|
12 |
|
13 |
+
return conversation.generated_responses[-1]
|
14 |
|
15 |
demo_chatbot = gr.ChatInterface(vanilla_chatbot, title="Vanilla Chatbot", description="Enter text to start chatting.")
|
16 |
|