-
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for nomic-embed-vision-v1 and nomic-embed-vision-v1.5 #3
Comments
Their documentation is missing crucial details for getting this to work. After much experimentation the recipe is this: # items is an array of bytes, each one representing an image
response = httpx.post(
"https://api-atlas.nomic.ai/v1/embedding/image",
headers={"Authorization": f"Bearer {key}"},
data={"model": "nomic-embed-vision-v1.5"},
files=[("images", item) for item in items],
) Crucial detail is that you use a |
Tested like this: llm embed-multi -d emb.db images --files ../llm '*.png' --binary --model nomic-embed-vision-v1.5 |
Testing this was hard due to this bug: I applied a nasty monkeypatch workaround based on this: |
https://www.nomic.ai/blog/posts/nomic-embed-vision
https://docs.nomic.ai/reference/api/embed-image-v-1-embedding-image-post
The text was updated successfully, but these errors were encountered: