Spaces:
Running
Running
fix css
Browse files
app.py
CHANGED
|
@@ -84,7 +84,7 @@ def process_ocr_qa(text, lang_choice):
|
|
| 84 |
return f"Error: {e}"
|
| 85 |
|
| 86 |
# Create the interface with logo and improved description
|
| 87 |
-
with gr.Blocks(title="OCR QA Demo"
|
| 88 |
gr.HTML(
|
| 89 |
"""
|
| 90 |
<a href="https://impresso-project.ch" target="_blank">
|
|
@@ -177,4 +177,4 @@ with gr.Blocks(title="OCR QA Demo",css=CSS) as demo:
|
|
| 177 |
outputs=info_accordion
|
| 178 |
)
|
| 179 |
|
| 180 |
-
demo.launch(server_name="0.0.0.0", server_port=7860)
|
|
|
|
| 84 |
return f"Error: {e}"
|
| 85 |
|
| 86 |
# Create the interface with logo and improved description
|
| 87 |
+
with gr.Blocks(title="OCR QA Demo") as demo:
|
| 88 |
gr.HTML(
|
| 89 |
"""
|
| 90 |
<a href="https://impresso-project.ch" target="_blank">
|
|
|
|
| 177 |
outputs=info_accordion
|
| 178 |
)
|
| 179 |
|
| 180 |
+
demo.launch(server_name="0.0.0.0", server_port=7860, css=CSS)
|