File size: 540 Bytes
6aad1e2
6177bd2
 
6aad1e2
828d576
 
6aad1e2
ac0dc44
6aad1e2
 
 
ac0dc44
6aad1e2
ac0dc44
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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()