Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -4,15 +4,13 @@ import gradio as gr
|
|
4 |
|
5 |
|
6 |
chatbot = pipeline("conversational", model="ericzhou/DialoGPT-Medium-Rick_v2")
|
7 |
-
|
8 |
def predict(sentence,history) :
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
conversation
|
13 |
-
|
14 |
-
# mid conversation
|
15 |
-
conversation.add_user_input(sentence)
|
16 |
conversation = chatbot(conversation)
|
17 |
return conversation.generated_responses[-1]
|
18 |
|
|
|
4 |
|
5 |
|
6 |
chatbot = pipeline("conversational", model="ericzhou/DialoGPT-Medium-Rick_v2")
|
7 |
+
|
8 |
def predict(sentence,history) :
|
9 |
+
conversation = Conversation()
|
10 |
+
for hist in history:
|
11 |
+
conversation.add_user_input(hist[0])
|
12 |
+
conversation.append_response(hist[1])
|
13 |
+
conversation.add_user_input(sentence)
|
|
|
|
|
14 |
conversation = chatbot(conversation)
|
15 |
return conversation.generated_responses[-1]
|
16 |
|