Then you can switch to a model such as claude-3-5-sonnet and pass the image in with no code changes.
Python
Copy
from optimodel_server_types import ModelTypes,response = client.chat.completions.create( model=ModelTypes.claude_3_5_sonnet.name, messages=[ # Same as above ... ],)