Spaces:
Runtime error
Runtime error
Commit
·
3c50bd4
1
Parent(s):
b45524c
testing
Browse files- __pycache__/app.cpython-310.pyc +0 -0
- app.py +5 -1
__pycache__/app.cpython-310.pyc
CHANGED
Binary files a/__pycache__/app.cpython-310.pyc and b/__pycache__/app.cpython-310.pyc differ
|
|
app.py
CHANGED
@@ -65,9 +65,13 @@ def gemini_output(image_path,
|
|
65 |
|
66 |
|
67 |
custom_css = """
|
|
|
|
|
68 |
.big-font textarea {
|
69 |
font-size: 20px !important;
|
70 |
}
|
|
|
|
|
71 |
"""
|
72 |
|
73 |
def extract_text(image_path):
|
@@ -107,7 +111,7 @@ iface = gr.Interface(
|
|
107 |
title="Text Extraction",
|
108 |
description="Upload an image to extract text",
|
109 |
allow_flagging='never',
|
110 |
-
css=custom_css
|
111 |
)
|
112 |
|
113 |
# Launch the app
|
|
|
65 |
|
66 |
|
67 |
custom_css = """
|
68 |
+
overflow-y: scroll !important;
|
69 |
+
|
70 |
.big-font textarea {
|
71 |
font-size: 20px !important;
|
72 |
}
|
73 |
+
|
74 |
+
|
75 |
"""
|
76 |
|
77 |
def extract_text(image_path):
|
|
|
111 |
title="Text Extraction",
|
112 |
description="Upload an image to extract text",
|
113 |
allow_flagging='never',
|
114 |
+
css=custom_css,
|
115 |
)
|
116 |
|
117 |
# Launch the app
|