Vision support in o3 models #417
Answered
by
StephenHodgson
RESEARCHEKASA
asked this question in
Q&A
-
The new o3-mini model seems to support Vision calls. Using ImageURL (as with chat models) doesn't work. It seems that reasoning models only accept encoded images, not URLs. Any suggestion? |
Beta Was this translation helpful? Give feedback.
Answered by
StephenHodgson
Feb 3, 2025
Replies: 1 comment 2 replies
-
Is the API returning the error or the plugin? Can you give me an example to try out? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yeah this is from the server. Best bet is to download your image into a local folder, then encode it to base64 string and convert that to bytes when you construct your request.
Here's how I handled native images for the Unity game engine for example:
I didn't implement anything like this in my vanilla dotnet plugin to give people maximum flexibility.