likhonsheikh's picture
Upload app.py with huggingface_hub
e69fa51 verified
raw
history blame contribute delete
159 Bytes
import gradio as gr
def greet(url):
return f"URL: {url}"
demo = gr.Interface(fn=greet, inputs="text", outputs="text", title="CDP Browser")
demo.launch()