SarcasticBot / app.py
mowczarek's picture
Update app.py
5067988 verified
raw
history blame contribute delete
318 Bytes
import gradio as gr
# Funkcja bota
def pomidor_bot(user_input):
return "POMIDOR"
# Interfejs Gradio
demo = gr.ChatInterface(pomidor_bot,
title="🍅 Bot Pomidor",
description="Zadaj mi dowolne pytanie. Odpowiem ci... pomidorem 😏")
# Uruchomienie
demo.launch()