Taga-Care / app.py
rande's picture
Update app.py
08b52ef
raw
history blame contribute delete
281 Bytes
import gradio as gr
import time
gr.load("models/ljvmiranda921/tl_calamancy_lg").launch(share=True)
def slow_echo(message, history):
for i in range(len(message)):
time.sleep(0.05)
yield "You typed: " + message[: i+1]
demo = gr.ChatInterface(slow_echo).queue()