osanseviero's picture
Create app.py
fe97494
raw
history blame
215 Bytes
import gradio as gr
import time
def generate():
text = "Hello, this is a demo without using streaming that emulates a model"
time.sleep(3)
gr.Interface(
generate,
inputs=None,
outputs="text"
)