Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -4,6 +4,7 @@ import requests
|
|
4 |
from PIL import Image
|
5 |
from io import BytesIO
|
6 |
import fitz # PyMuPDF
|
|
|
7 |
|
8 |
# Configuration - Replace with your API key
|
9 |
GEMINI_API_KEY = st.secrets["GEMINI_API_KEY"]
|
@@ -43,6 +44,22 @@ def encode_file(uploaded_file):
|
|
43 |
img.save(img_byte_arr, format='JPEG')
|
44 |
return base64.b64encode(img_byte_arr.getvalue()).decode('utf-8')
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
return base64.b64encode(file_bytes).decode('utf-8')
|
47 |
except Exception as e:
|
48 |
st.error(f"File processing error: {str(e)}")
|
@@ -94,8 +111,14 @@ def process_document():
|
|
94 |
pix = page.get_pixmap()
|
95 |
img = Image.frombytes("RGB", [pix.width, pix.height], pix.samples)
|
96 |
st.session_state.doc_preview = img
|
97 |
-
|
98 |
st.session_state.doc_preview = Image.open(uploaded_file)
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
|
100 |
# Classify document
|
101 |
classify_prompt = f"Classify this healthcare document into one of: {DOCUMENT_TYPES}. Respond only with the category name."
|
@@ -151,7 +174,7 @@ def main():
|
|
151 |
# Upload button
|
152 |
st.file_uploader(
|
153 |
"Upload Document",
|
154 |
-
type=["pdf", "
|
155 |
key="uploaded_file",
|
156 |
on_change=process_document
|
157 |
)
|
|
|
4 |
from PIL import Image
|
5 |
from io import BytesIO
|
6 |
import fitz # PyMuPDF
|
7 |
+
import os
|
8 |
|
9 |
# Configuration - Replace with your API key
|
10 |
GEMINI_API_KEY = st.secrets["GEMINI_API_KEY"]
|
|
|
44 |
img.save(img_byte_arr, format='JPEG')
|
45 |
return base64.b64encode(img_byte_arr.getvalue()).decode('utf-8')
|
46 |
|
47 |
+
elif uploaded_file.type in ["image/webp", "image/avif", "image/jpeg", "image/png", "image/gif"]:
|
48 |
+
img = Image.open(BytesIO(file_bytes))
|
49 |
+
img_byte_arr = BytesIO()
|
50 |
+
img.save(img_byte_arr, format='JPEG')
|
51 |
+
return base64.b64encode(img_byte_arr.getvalue()).decode('utf-8')
|
52 |
+
|
53 |
+
elif uploaded_file.type == "text/plain":
|
54 |
+
# Convert TXT to image
|
55 |
+
text = file_bytes.decode('utf-8')
|
56 |
+
img = Image.new('RGB', (800, 600), color = (73, 109, 137))
|
57 |
+
d = ImageDraw.Draw(img)
|
58 |
+
d.text((10,10), text, fill=(255,255,0))
|
59 |
+
img_byte_arr = BytesIO()
|
60 |
+
img.save(img_byte_arr, format='JPEG')
|
61 |
+
return base64.b64encode(img_byte_arr.getvalue()).decode('utf-8')
|
62 |
+
|
63 |
return base64.b64encode(file_bytes).decode('utf-8')
|
64 |
except Exception as e:
|
65 |
st.error(f"File processing error: {str(e)}")
|
|
|
111 |
pix = page.get_pixmap()
|
112 |
img = Image.frombytes("RGB", [pix.width, pix.height], pix.samples)
|
113 |
st.session_state.doc_preview = img
|
114 |
+
elif uploaded_file.type in ["image/webp", "image/avif", "image/jpeg", "image/png", "image/gif"]:
|
115 |
st.session_state.doc_preview = Image.open(uploaded_file)
|
116 |
+
elif uploaded_file.type == "text/plain":
|
117 |
+
text = uploaded_file.getvalue().decode('utf-8')
|
118 |
+
img = Image.new('RGB', (800, 600), color = (73, 109, 137))
|
119 |
+
d = ImageDraw.Draw(img)
|
120 |
+
d.text((10,10), text, fill=(255,255,0))
|
121 |
+
st.session_state.doc_preview = img
|
122 |
|
123 |
# Classify document
|
124 |
classify_prompt = f"Classify this healthcare document into one of: {DOCUMENT_TYPES}. Respond only with the category name."
|
|
|
174 |
# Upload button
|
175 |
st.file_uploader(
|
176 |
"Upload Document",
|
177 |
+
type=["pdf", "webp", "avif", "jpg", "jpeg", "png", "gif", "txt"],
|
178 |
key="uploaded_file",
|
179 |
on_change=process_document
|
180 |
)
|