chatbot_1302 / app.py
Akettu's picture
initial commit
957a450 verified
raw
history blame contribute delete
349 Bytes
import gradio as gr
# Yksinkertainen vastausfunktio
def chatbot(message, history):
# history on lista viesteistä [(käyttäjä, botti), ...]
history = history or []
vastaus = f"Vastasit: {message}"
history.append((message, vastaus))
return history, history
# Gradio-sovellus
demo = gr.ChatInterface(fn=chatbot)
demo.launch()