Spaces:
Sleeping
Sleeping
File size: 318 Bytes
164b996 5067988 164b996 5067988 164b996 5067988 8ceff1d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 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()
|