honey90 commited on
Commit
4cb67e2
·
verified ·
1 Parent(s): bc10fac

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -10,5 +10,11 @@ def url_shortener(url):
10
  short_url = shorten_url(url)
11
  return short_url
12
 
13
- iface = gr.Interface(fn=url_shortener, inputs="text", outputs="text", title="URL Shortener")
 
 
 
 
 
 
14
  iface.launch()
 
10
  short_url = shorten_url(url)
11
  return short_url
12
 
13
+ iface = gr.Interface(
14
+ fn=url_shortener,
15
+ inputs="text",
16
+ outputs=gr.Textbox(label="Shortened URL", copyable=True),
17
+ title="URL Shortener"
18
+ )
19
+
20
  iface.launch()