Skip to content
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

Closed
simonw opened this issue Nov 21, 2024 · 3 comments
Closed

Support for nomic-embed-vision-v1 and nomic-embed-vision-v1.5 #3

simonw opened this issue Nov 21, 2024 · 3 comments
Labels
enhancement New feature or request

Comments

@simonw
Copy link
Owner

simonw commented Nov 21, 2024

https://www.nomic.ai/blog/posts/nomic-embed-vision

https://docs.nomic.ai/reference/api/embed-image-v-1-embedding-image-post

@simonw simonw added the enhancement New feature or request label Nov 21, 2024
@simonw simonw changed the title Support for vision model Support for nomic-embed-vision-v1 and nomic-embed-vision-v1.5 Nov 21, 2024
@simonw
Copy link
Owner Author

simonw commented Nov 21, 2024

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 multipart/form-data submission and send images as the name of the form field that contains the binary file data - and you can send images multiple times.

@simonw
Copy link
Owner Author

simonw commented Nov 21, 2024

Tested like this:

llm embed-multi -d emb.db images --files ../llm '*.png' --binary --model nomic-embed-vision-v1.5

@simonw
Copy link
Owner Author

simonw commented Nov 21, 2024

Testing this was hard due to this bug:

I applied a nasty monkeypatch workaround based on this:

@simonw simonw closed this as completed in 6a55f56 Nov 21, 2024
simonw added a commit that referenced this issue Nov 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant