Text2ImgPort / app.py
Cacau's picture
uppdate app.py
c54dd0d
raw
history blame
252 Bytes
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()