Vision \ image analysis #44
|
Does this extension support vision \ image analysis? |
Replies: 4 comments 2 replies
Not at the moment. I explored adding vision support, but couldn’t find a reliable way to integrate OCR or image-processing libraries within Chrome extension constraints. If you have suggestions or have implemented something similar, I’d love to hear them and will gladly experiment with possible approaches. |
|
I did something like that with vibe coding since I am not very good at this and maybe it will help. Here it is: |
|
The extension was made with Ollama in mind using REST API, so yes, it is compatible with OpenAI’s vision-capable API endpoint too. |
|
I understand. |
Thanks for sharing this, appreciate you taking the time to put together a working example and linking all the files.
Your approach works because it relies on OpenAI’s vision-capable API endpoint, where image understanding and OCR are handled entirely server-side. In that setup, the Chrome extension is mainly responsible for capturing the image and forwarding it to the API.
At the moment, Ollama Client is intentionally focused on local-only models running via Ollama. Most Olla…