gustavoaq commited on
Commit
5c471d1
1 Parent(s): d9e91fd

Update demo/app.py

Browse files
Files changed (1) hide show
  1. demo/app.py +2 -2
demo/app.py CHANGED
@@ -109,7 +109,7 @@ def retry(
109
 
110
  gr.Chatbot.postprocess = postprocess
111
 
112
- with open("assets/custom.css", "r", encoding="utf-8") as f:
113
  customCSS = f.read()
114
 
115
  with gr.Blocks(css=customCSS, theme=small_and_beautiful_theme) as demo:
@@ -242,5 +242,5 @@ demo.title = "Baize"
242
  if __name__ == "__main__":
243
  reload_javascript()
244
  demo.queue(concurrency_count=CONCURRENT_COUNT).launch(
245
- share=False, favicon_path="./assets/favicon.ico", inbrowser=True
246
  )
 
109
 
110
  gr.Chatbot.postprocess = postprocess
111
 
112
+ with open("/home/user/app/demo/assets/custom.css", "r", encoding="utf-8") as f:
113
  customCSS = f.read()
114
 
115
  with gr.Blocks(css=customCSS, theme=small_and_beautiful_theme) as demo:
 
242
  if __name__ == "__main__":
243
  reload_javascript()
244
  demo.queue(concurrency_count=CONCURRENT_COUNT).launch(
245
+ share=False, favicon_path="/home/user/app/demo/assets/favicon.ico", inbrowser=True
246
  )