Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,27 @@
|
|
1 |
import gradio as gr
|
|
|
2 |
|
3 |
-
|
4 |
-
|
|
|
|
|
5 |
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
3 |
|
4 |
+
# Wczytanie własnego modelu chatbota z Hugging Face
|
5 |
+
model_name = "pp3232133/pp3232133-distilgpt2-wikitext2"
|
6 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
7 |
+
model = AutoModelForCausalLM.from_pretrained(model_name)
|
8 |
|
9 |
+
# Funkcja obsługująca wejście i wyjście dla interfejsu Gradio
|
10 |
+
def chatbot_interface(input_text):
|
11 |
+
input_ids = tokenizer.encode(input_text, return_tensors="pt")
|
12 |
+
chatbot_output = model.generate(input_ids, max_length=100)[0]
|
13 |
+
response = tokenizer.decode(chatbot_output, skip_special_tokens=True)
|
14 |
+
return response
|
15 |
+
|
16 |
+
# Interfejs Gradio dla chatbota
|
17 |
+
iface = gr.Interface(
|
18 |
+
fn=chatbot_interface,
|
19 |
+
inputs="text",
|
20 |
+
outputs="text",
|
21 |
+
title="Chatbot",
|
22 |
+
description="Custom chatbot based on your Hugging Face model. Start typing to chat with the bot.",
|
23 |
+
theme="compact"
|
24 |
+
)
|
25 |
+
|
26 |
+
# Uruchomienie interfejsu
|
27 |
+
iface.launch()
|