fabric's picture
Update run.py
5bba8b3
raw
history blame contribute delete
167 Bytes
import time
import gradio as gr
def echo(message, history):
return f"Echo {message}"
demo = gr.ChatInterface(echo)
if __name__ == "__main__":
demo.launch()