sanjay9876's picture
Update run.py
d46412d verified
Raw
History Blame Contribute Delete
405 Bytes
import time
import gradio as gr
import spaces
@spaces.GPU()
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,
flagging_mode="manual",
flagging_options=["Like", "Spam", "Inappropriate", "Other"],
save_history=True,
)
if __name__ == "__main__":
demo.launch()