from transformers import pipeline import gradio as gr # Modeli yükle chatbot_model = pipeline("text2text-generation", model="facebook/blenderbot-400M-distill") # Chatbot için mesaj işleme fonksiyonu def inan_ai_chatbot(message, history): response = chatbot_model(message) return response[0]["generated_text"] # Özelleştirilmiş Gradio arayüzü with gr.Blocks(theme="compact") as demo: gr.Markdown("
Sohbet etmeye başlamak için aşağıdaki kutuya bir mesaj yazabilirsiniz.
") chatbot = gr.Chatbot(label="İnan AI Sohbet Ekranı") with gr.Row(): msg = gr.Textbox(label="Mesajınızı yazın:", placeholder="Bir şeyler yazın...") send_btn = gr.Button("Gönder") def update_ui(message, chat_history): # Kullanıcı mesajını ekle chat_history = chat_history + [(message, "")] response = inan_ai_chatbot(message, chat_history) # Modelin yanıtını ekle chat_history[-1] = (message, response) return chat_history, "" msg.submit(update_ui, [msg, chatbot], [chatbot, msg]) send_btn.click(update_ui, [msg, chatbot], [chatbot, msg]) # Uygulamayı başlat demo.launch()