Flaretext2text / app.py
HaveAI's picture
Update app.py
08f59c3 verified
raw
history blame
155 Bytes
import gradio as gr
def respond(message, history):
return f"Π’Ρ‹ сказал: {message}"
gr.ChatInterface(fn=respond, title="Flare Chat").launch()