|
""" vlm.py |
|
|
|
Utilities for working with Vision Language Models |
|
|
|
:author: Didier Guillevic |
|
:email: [email protected] |
|
:creation: 2024-12-28 |
|
""" |
|
|
|
import logging |
|
logger = logging.getLogger(__name__) |
|
logging.basicConfig(level=logging.INFO) |
|
|
|
import os |
|
from mistralai import Mistral |
|
import base64 |
|
|
|
|
|
|
|
|
|
api_key = os.environ["MISTRAL_API_KEY"] |
|
client = Mistral(api_key=api_key) |
|
model_id = "mistral-small-latest" |
|
|
|
|
|
|
|
|
|
def encode_image(image_path): |
|
"""Encode the image to base64.""" |
|
try: |
|
with open(image_path, "rb") as image_file: |
|
return base64.b64encode(image_file.read()).decode('utf-8') |
|
except FileNotFoundError: |
|
print(f"Error: The file {image_path} was not found.") |
|
return None |
|
except Exception as e: |
|
print(f"Error: {e}") |
|
return None |
|
|
|
|
|
|
|
|
|
|
|
def build_messages(message: dict, history: list[tuple]): |
|
"""Build messages given message & history from a **multimodal** chat interface. |
|
|
|
Args: |
|
message: dictionary with keys: 'text', 'files' |
|
history: list of tuples with (message, response) |
|
|
|
Returns: |
|
list of messages (to be sent to the model) |
|
""" |
|
logger.info(f"{message=}") |
|
logger.info(f"{history=}") |
|
|
|
user_text = message.get("text", "") |
|
user_images = message.get("files", []) |
|
|
|
|
|
messages = [] |
|
combined_user_input = [] |
|
for user_turn, bot_turn in history: |
|
if isinstance(user_turn, tuple): |
|
image_content = [ |
|
{ |
|
"type": "image_url", |
|
"image_url": f"data:image/jpeg;base64,{encode_image(image)}" |
|
} for image in user_turn |
|
] |
|
combined_user_input.extend(image_content) |
|
elif isinstance(user_turn, str): |
|
combined_user_input.append({"type": "text", "text": user_turn}) |
|
if combined_user_input and bot_turn: |
|
messages.append({'role': 'user', 'content': combined_user_input}) |
|
messages.append({'role': 'assistant', 'content': [{"type": "text", "text": bot_turn}]}) |
|
combined_user_input = [] |
|
|
|
|
|
user_content = [] |
|
if user_text: |
|
user_content.append({"type": "text", "text": user_text}) |
|
for image in user_images: |
|
user_content.append( |
|
{ |
|
"type": "image_url", |
|
"image_url": f"data:image/jpeg;base64,{encode_image(image)}" |
|
} |
|
) |
|
|
|
messages.append({'role': 'user', 'content': user_content}) |
|
logger.info(f"{messages=}") |
|
|
|
return messages |
|
|
|
|
|
|
|
|
|
def get_response(messages: list[dict]): |
|
"""Stream the model's response to the chat interface. |
|
|
|
Args: |
|
messages: list of messages to send to the model |
|
""" |
|
response = client.chat.complete(model=model_id, messages=messages) |
|
logger.info(f"{response=}") |
|
return response.choices[0].message.content |
|
|
|
|