epochs-demos commited on
Commit
e5572a5
·
1 Parent(s): 7fd9153

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -29,7 +29,7 @@ logging.basicConfig(level=logging.INFO)
29
  DEFAULT_APPLICATION_NAME = "fashion-aggregator"
30
 
31
  APP_DIR = Path(__file__).resolve().parent # what is the directory for this application?
32
- FAVICON = APP_DIR / "1001epochs.png" # path to a small image for display in browser tab and social media
33
  README = APP_DIR / "README.md" # path to an app readme file in HTML/markdown
34
 
35
  DEFAULT_PORT = 11700
@@ -127,7 +127,7 @@ def make_frontend(
127
  """Creates a gradio.Interface frontend for text to image search function."""
128
 
129
  allow_flagging = "never"
130
-
131
  textbox = gr.inputs.Textbox(label="Item Description")
132
 
133
  # Build a customized browser interface to a Python function
@@ -135,7 +135,7 @@ def make_frontend(
135
  fn=fn,
136
  outputs=gr.outputs.HTML(""),
137
  inputs=textbox,
138
- title="<span class='title-text'>Fashion Aggregator</span><img src='./1001epochs.png' class='logo-image'>",
139
  thumbnail=FAVICON,
140
  description="Discover your perfect apparel effortlessly. Simply describe what you're looking for!",
141
  cache_in_memory=False,
 
29
  DEFAULT_APPLICATION_NAME = "fashion-aggregator"
30
 
31
  APP_DIR = Path(__file__).resolve().parent # what is the directory for this application?
32
+ LOGO = APP_DIR / "1001epochs.png" # path to a small image for display in browser tab and social media
33
  README = APP_DIR / "README.md" # path to an app readme file in HTML/markdown
34
 
35
  DEFAULT_PORT = 11700
 
127
  """Creates a gradio.Interface frontend for text to image search function."""
128
 
129
  allow_flagging = "never"
130
+ print(LOGO)
131
  textbox = gr.inputs.Textbox(label="Item Description")
132
 
133
  # Build a customized browser interface to a Python function
 
135
  fn=fn,
136
  outputs=gr.outputs.HTML(""),
137
  inputs=textbox,
138
+ title="<span class='title-text'>Fashion Aggregator</span><img src='1001epochs.png' class='logo-image'>",
139
  thumbnail=FAVICON,
140
  description="Discover your perfect apparel effortlessly. Simply describe what you're looking for!",
141
  cache_in_memory=False,