likhonsheikh commited on
Commit
e69fa51
·
verified ·
1 Parent(s): 7cafebf

Upload app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import gradio as gr
2
 
3
  def greet(url):
4
- return f"You entered: {url}"
5
 
6
- demo = gr.Interface(fn=greet, inputs="text", outputs="text", title="CDP Browser Sandbox")
7
  demo.launch()
 
1
  import gradio as gr
2
 
3
  def greet(url):
4
+ return f"URL: {url}"
5
 
6
+ demo = gr.Interface(fn=greet, inputs="text", outputs="text", title="CDP Browser")
7
  demo.launch()