Spaces:
Sleeping
Sleeping
| 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() | |