Shabdobhedi's picture
Update ocr_utils.py
d452588 verified
raw
history blame
657 Bytes
import google.generativeai as genai
from PIL import Image
import streamlit as st
import io
GOOGLE_API_KEY = "AIzaSyAesEWBYNPVIw5dde2LiZDXWDDJ8by90XI"
genai.configure(api_key=GOOGLE_API_KEY)
model = genai.GenerativeModel("gemini-1.5-pro")
def extract_text(image):
# Ensure the image is in RGB mode
if image.mode != 'RGB':
image = image.convert('RGB')
# Call the model's generate_content method with the PIL image
response = model.generate_content(
["successfully extracts hindi and english text from the image and returns the extracted text in a structured format (plain text)", image]
)
return response.text