Spaces:
Runtime error
Runtime error
File size: 252 Bytes
6f1901f c54dd0d 6f1901f c54dd0d ffb2c60 c54dd0d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import gradio as gr
import requests
import io
from PIL import Image
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(
fn=greet,
inputs=gr.Textbox(lines=2, placeholder="Name Here..."),
outputs="text",
)
demo.launch() |