Update app.py
Browse files
app.py
CHANGED
@@ -1,13 +1,17 @@
|
|
1 |
-
import
|
2 |
-
from transformers import AutoTokenizer, AutoModelForCausalLM, TextGenerationPipeline
|
3 |
import gradio as gr
|
4 |
|
5 |
-
|
6 |
-
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
7 |
-
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
8 |
-
model = AutoModelForCausalLM.from_pretrained(model_name).to(device)
|
9 |
|
10 |
-
|
|
|
11 |
|
12 |
-
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import pipeline, Conversation
|
|
|
2 |
import gradio as gr
|
3 |
|
4 |
+
chatbot = pipeline(model="facebook/blenderbot-400M-distill")
|
|
|
|
|
|
|
5 |
|
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 |
+
|
17 |
+
demo_chatbot.launch()
|