Flaretext2text / app.py
HaveAI's picture
Update app.py
99ee527 verified
raw
history blame
212 Bytes
import gradio as gr
def respond(message, history):
return f"Π’Ρ‹ сказал: {message}"
gr.ChatInterface(fn=respond, title="Flare Chat", description="Π”ΠΎΠ±Ρ€ΠΎ ΠΏΠΎΠΆΠ°Π»ΠΎΠ²Π°Ρ‚ΡŒ Π² Flare!").launch()