Sean-Case commited on
Commit
813f823
β€’
1 Parent(s): 13cab70

Updated to latest Gradio version that hopefully solved root_url issues. Added ssl_verify=False to launch

Browse files
Files changed (3) hide show
  1. README.md +1 -1
  2. app.py +1 -1
  3. requirements.txt +1 -1
README.md CHANGED
@@ -4,7 +4,7 @@ emoji: πŸ”
4
  colorFrom: purple
5
  colorTo: green
6
  sdk: gradio
7
- sdk_version: 4.20.0
8
  app_file: app.py
9
  pinned: false
10
  license: apache-2.0
 
4
  colorFrom: purple
5
  colorTo: green
6
  sdk: gradio
7
+ sdk_version: 4.20.1
8
  app_file: app.py
9
  pinned: false
10
  license: apache-2.0
app.py CHANGED
@@ -197,7 +197,7 @@ depends on factors such as the type of documents or queries. Information taken f
197
  #block.queue().launch(debug=True)
198
 
199
  # Running on server (e.g. AWS) without specifying port
200
- block.queue().launch() # root_path="/data-text-search" # server_name="0.0.0.0",
201
 
202
 
203
  # Running on local server without https
 
197
  #block.queue().launch(debug=True)
198
 
199
  # Running on server (e.g. AWS) without specifying port
200
+ block.queue().launch(ssl_verify=False) # root_path="/data-text-search" # server_name="0.0.0.0",
201
 
202
 
203
  # Running on local server without https
requirements.txt CHANGED
@@ -7,6 +7,6 @@ openpyxl==3.1.2
7
  torch==2.1.2
8
  spacy==3.7.2
9
  en_core_web_sm @ https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.7.1/en_core_web_sm-3.7.1.tar.gz
10
- gradio==3.50.2
11
  sentence_transformers==2.3.1
12
  lxml==5.1.0
 
7
  torch==2.1.2
8
  spacy==3.7.2
9
  en_core_web_sm @ https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.7.1/en_core_web_sm-3.7.1.tar.gz
10
+ gradio==4.20.1
11
  sentence_transformers==2.3.1
12
  lxml==5.1.0