from transformers import pipeline | |
import gradio as gr | |
# Chatbot modelini tanımlayın | |
chatbot_model = pipeline(model="facebook/blenderbot-400M-distill") | |
# Gradio için fonksiyon | |
def vanilla_chatbot(message, history): | |
# Girdi mesajını modele gönder ve cevabı al | |
response = chatbot_model(message) | |
return response["generated_text"] # Yanıtı döndür | |
# Gradio arayüzünü başlat | |
demo_chatbot = gr.ChatInterface(vanilla_chatbot, title="Vanilla Chatbot", description="Enter text to start chatting.") | |
demo_chatbot.launch() | |