Spaces:
Runtime error
Runtime error
Commit
·
9566650
1
Parent(s):
e37247a
Update app.py
Browse files
app.py
CHANGED
@@ -117,7 +117,7 @@ def main(args):
|
|
117 |
# server_name="0.0.0.0", # make server accessible, binding all interfaces # noqa: S104
|
118 |
# server_port=args.port, # set a port to bind to, failing if unavailable
|
119 |
# share=False, # should we create a (temporary) public link on https://gradio.app?
|
120 |
-
# favicon_path=
|
121 |
)
|
122 |
|
123 |
|
@@ -134,7 +134,7 @@ def make_frontend(
|
|
134 |
inputs=gr.inputs.Textbox(label="Item Description", placeholder="Enter item description here"),
|
135 |
outputs=gr.Gallery(label="Relevant Items", show_labels=True, label_position="below"),
|
136 |
title="<span class='title-text'>Fashion Aggregator</span><img src='{logo}' class='logo-image'>".format(logo=LOGO),
|
137 |
-
thumbnail=
|
138 |
description="Discover your perfect apparel effortlessly. Simply describe what you're looking for!",
|
139 |
cache_examples=False,
|
140 |
allow_flagging=allow_flagging,
|
@@ -203,7 +203,8 @@ def make_frontend(
|
|
203 |
# outputs=gr.Gallery(label="Relevant Items", show_labels=True, label_position="below"),
|
204 |
# inputs=gr.inputs.Textbox(label="Item Description", placeholder="Enter item description here"),
|
205 |
# title="Fashion Aggregator",
|
206 |
-
# thumbnail=
|
|
|
207 |
# description="Discover your perfect apparel effortlessly. Simply describe what you're looking for!",
|
208 |
# cache_examples=False,
|
209 |
# allow_flagging=allow_flagging,
|
|
|
117 |
# server_name="0.0.0.0", # make server accessible, binding all interfaces # noqa: S104
|
118 |
# server_port=args.port, # set a port to bind to, failing if unavailable
|
119 |
# share=False, # should we create a (temporary) public link on https://gradio.app?
|
120 |
+
# favicon_path=LOGO, # what icon should we display in the address bar?
|
121 |
)
|
122 |
|
123 |
|
|
|
134 |
inputs=gr.inputs.Textbox(label="Item Description", placeholder="Enter item description here"),
|
135 |
outputs=gr.Gallery(label="Relevant Items", show_labels=True, label_position="below"),
|
136 |
title="<span class='title-text'>Fashion Aggregator</span><img src='{logo}' class='logo-image'>".format(logo=LOGO),
|
137 |
+
thumbnail=LOGO,
|
138 |
description="Discover your perfect apparel effortlessly. Simply describe what you're looking for!",
|
139 |
cache_examples=False,
|
140 |
allow_flagging=allow_flagging,
|
|
|
203 |
# outputs=gr.Gallery(label="Relevant Items", show_labels=True, label_position="below"),
|
204 |
# inputs=gr.inputs.Textbox(label="Item Description", placeholder="Enter item description here"),
|
205 |
# title="Fashion Aggregator",
|
206 |
+
# thumbnail=
|
207 |
+
,
|
208 |
# description="Discover your perfect apparel effortlessly. Simply describe what you're looking for!",
|
209 |
# cache_examples=False,
|
210 |
# allow_flagging=allow_flagging,
|