Spaces:
Runtime error
Runtime error
File size: 1,609 Bytes
024c100 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | from dotenv import load_dotenv
import os
import google.genai as genai
import json
def extractor():
load_dotenv()
API_KEY = os.environ.get("GEMINI_API_KEY")
folder_path = "data\\processed_images"
client = genai.Client(api_key=API_KEY)
image_files = [
f for f in os.listdir(folder_path)
if f.endswith(".jpg") or f.endswith(".png") or f.endswith(".jpeg")
]
extracted_texts = {}
for image_name in image_files:
full_path = os.path.join(folder_path, image_name)
print(full_path)
with open(full_path, "rb") as f:
image_data = f.read()
response = client.models.generate_content(
model="gemini-3.1-flash-lite-preview",
contents=[
{
"parts": [
{
"inline_data": {
"mime_type": "image/jpeg",
"data": image_data
}
},
{
"text": "Extract all the text from this image exactly as it appears."
}
]
}
]
)
extracted_texts[image_name] = response.text
print(f"Image: {image_name}")
print(response.text)
print("---")
print("Extraction is complete.")
with open("extracted_texts.json", "w", encoding="utf-8") as f:
json.dump(extracted_texts, f, ensure_ascii=False, indent=2)
print("Saved to extracted_texts.json")
|