A simple toolkit for generating vector embeddings across multiple providers and models
Project description
EmbedKit
A Python library for generating embeddings from text, images, and PDFs using various models (e.g. from Cohere, ColPali).
Usage
See main.py for examples.
from embedkit import EmbedKit
from embedkit.models import Model
# Instantiate a kit
# Using ColPali
kit = EmbedKit.colpali(model=Model.ColPali.V1_3)
# Using Cohere
kit = EmbedKit.cohere(
model=Model.Cohere.EMBED_V4_0,
api_key="your_api_key",
text_input_type=CohereInputType.SEARCH_DOCUMENT,
)
# Then - the embedding API is consistent
embeddings = kit.embed_text("Hello world") or kit.embed_text(["Hello world", "Hello world"])
embeddings = kit.embed_image("path/to/image.png") or kit.embed_image(["path/to/image1.png", "path/to/image2.png"])
embeddings = kit.embed_pdf("path/to/pdf.pdf") # Single PDF only
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
embedkit-0.1.3.tar.gz
(1.0 MB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file embedkit-0.1.3.tar.gz.
File metadata
- Download URL: embedkit-0.1.3.tar.gz
- Upload date:
- Size: 1.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42bb13a63d555dbac6f79de322c95ad07efffed126da0b760a35058c099852c8
|
|
| MD5 |
b54a083630e3008cf9839536342c30cd
|
|
| BLAKE2b-256 |
d7c7ddfc9ed1ef8a1ae7ff5cfadff0fa82dc89d157a420f10d411a0969d156eb
|
File details
Details for the file embedkit-0.1.3-py3-none-any.whl.
File metadata
- Download URL: embedkit-0.1.3-py3-none-any.whl
- Upload date:
- Size: 9.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68798b3d38109fe7d713fe0285e4f01115f248fee043f833575479a005459bec
|
|
| MD5 |
068d24a682dc0779088a5ce1a3f08661
|
|
| BLAKE2b-256 |
4169d8aa40c9b38ac5a47a34e9b9c1020e2a632ad335ebb2e1ff72d8d265383a
|