seanpedrickcase
commited on
Commit
•
7b14971
1
Parent(s):
641ff3e
Loosened Gradio and Spacy version requirements
Browse files- app.py +1 -1
- requirements.txt +2 -2
app.py
CHANGED
@@ -108,7 +108,7 @@ with block:
|
|
108 |
output_file = gr.File(label="Output file")
|
109 |
|
110 |
with gr.Tab(label="Advanced options"):
|
111 |
-
with gr.Accordion(label = "AWS data access", open =
|
112 |
aws_password_box = gr.Textbox(label="Password for AWS data access (ask the Data team if you don't have this)")
|
113 |
with gr.Row():
|
114 |
in_aws_file = gr.Dropdown(label="Choose keyword file to load from AWS (only valid for API Gateway app)", choices=["None", "Lambeth borough plan"])
|
|
|
108 |
output_file = gr.File(label="Output file")
|
109 |
|
110 |
with gr.Tab(label="Advanced options"):
|
111 |
+
with gr.Accordion(label = "AWS data access", open = True):
|
112 |
aws_password_box = gr.Textbox(label="Password for AWS data access (ask the Data team if you don't have this)")
|
113 |
with gr.Row():
|
114 |
in_aws_file = gr.Dropdown(label="Choose keyword file to load from AWS (only valid for API Gateway app)", choices=["None", "Lambeth borough plan"])
|
requirements.txt
CHANGED
@@ -6,6 +6,6 @@ presidio_anonymizer==2.2.351
|
|
6 |
presidio-image-redactor==0.0.52
|
7 |
pikepdf==8.15.1
|
8 |
pandas==2.2.2
|
9 |
-
spacy
|
10 |
en_core_web_lg @ https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-3.7.1/en_core_web_lg-3.7.1.tar.gz
|
11 |
-
gradio
|
|
|
6 |
presidio-image-redactor==0.0.52
|
7 |
pikepdf==8.15.1
|
8 |
pandas==2.2.2
|
9 |
+
spacy
|
10 |
en_core_web_lg @ https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-3.7.1/en_core_web_lg-3.7.1.tar.gz
|
11 |
+
gradio
|