basic / app.py
agentpx's picture
Update app.py
80d702e
raw
history blame contribute delete
No virus
333 Bytes
# Hello World
import gradio as gr
def greet(name):
return "Hello " + name + "!"
#demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo = gr.Interface(
fn=greet,
#inputs=gr.Textbox(lines=2, placeholder="Name Here..."),
inputs=gr.Image(source="webcam", streaming=True),
outputs="text",
)
demo.launch()