Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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(
|
|
|
|
|
|
|
|
|
|
|
|
|
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()
|