Multimodal_RAG / utils.py
amitsinghchandel's picture
Update space with new code
b69b215
raw
history blame contribute delete
159 Bytes
import base64
def encode_image(image_path):
with open(image_path, "rb") as image_file:
return base64.b64encode(image_file.read()).decode('utf-8')