Embed anything at lightning speed
Project description
Infra for building multimodal embeddings from unstructured sources, built in Rust for speed and robustness
EmbedAnything is a powerful library designed to streamline the creation and management of embedding pipelines. Whether you're working with text, images, audio, or any other type of data., EmbedAnything makes it easy to generate embeddings from multiple sources and store them efficiently in a vector database.
🚀 Key Features
- Local Embedding Works with local embedding models like AllminiLM
- MultiModality Works with text and image and will soon expand to audio
- Python Interface: Packaged as a Python library for seamless integration into your existing projects.
- Efficient: Optimized for speed and performance, with core functionality written in Rust.
- Scalable: Store embeddings in a vector database for easy retrieval and scalability.
- OpenAI Works with openai as well
💚 Installation
pip install embed-anything
🧑🚀 Getting Started
For local models
To use local embedding: we support Bert and Jina
from embed_anything import *
data = embed_anything.embed_file("filename.pdf", embeder= "Bert")
embeddings = np.array([data.embedding for data in data])
For multimodal embedding: we support CLIP
Requirements Directory with pictures you want to search for example we have test_files with images of cat, dogs etc
from embed_anything import *
data = embed_anything.embed_directory("test_files", embeder= "Clip")
embeddings = np.array([data.embedding for data in data])
query = "photo of a dog"
query_embedding = np.array(embed_anything.embed_query(query, embeder= "Clip")[0].embedding)
similarities = np.dot(embeddings, query_embedding)
max_index = np.argmax(similarities)
Image.open(data[max_index].text).show()
For OpenAI
- Please check if you already have the OpenAI key in the Environment variable.
If you are using embed-anything==0.1.7 version (latest version)
import embed_anything
data = embed_anything.embed_file("filename.pdf", embeder= "OpenAI")
embeddings = np.array([data.embedding for data in data])
🚧 Contributing to EmbedAnything
First of all, thank you for taking the time to contribute to this project. We truly appreciate your contributions, whether it's bug reports, feature suggestions, or pull requests. Your time and effort are highly valued in this project. 🚀
This document provides guidelines and best practices to help you to contribute effectively. These are meant to serve as guidelines, not strict rules. We encourage you to use your best judgment and feel comfortable proposing changes to this document through a pull request.
Table of Content:
- [Code of conduct]
- [Quick Start]
✔️ Code of Conduct:
Please read our [Code of Conduct] to understand the expectations we have for all contributors participating in this project. By participating, you agree to abide by our Code of Conduct.
🚀 Quick Start
You can quickly get started with contributing by searching for issues with the labels "Good First Issue" or "Help Needed" in the [Issues Section]. If you think you can contribute, comment on the issue and we will assign it to you.
To set up your development environment, please follow the steps mentioned below :
- Fork the repository and create a clone of the fork
- Create a branch for a feature or a bug you are working on in your fork
- If you are working with OpenAI make sure you have the keys
Contributing Guidelines
🔍 Reporting Bugs
- Title describing the issue clearly and concisely with relevant labels
- Provide a detailed description of the problem and the necessary steps to reproduce the issue.
- Include any relevant logs, screenshots, or other helpful information supporting the issue.
💡 New Feature or Suggesting Enhancements
☑️ ToDo
- Vector Database Add functionalities to integrate with any Vector Database
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
Built Distributions
File details
Details for the file embed_anything-0.1.11.tar.gz
.
File metadata
- Download URL: embed_anything-0.1.11.tar.gz
- Upload date:
- Size: 3.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e698908d58ae8d1160ffedf2ec834a224a99b137d798d9fe1b272fdc0e65b44 |
|
MD5 | cf321a4f3025e804ebe410413aba09de |
|
BLAKE2b-256 | 99d48e345cede3aa75d086aec56daabcdf5802e78274b511abcb1a089a419290 |
File details
Details for the file embed_anything-0.1.11-cp311-cp311-manylinux_2_34_x86_64.whl
.
File metadata
- Download URL: embed_anything-0.1.11-cp311-cp311-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 12.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09f2daa3f3875c9f24b85851ef0d33c9eb7626471686f6aee0f372d6a2101ca7 |
|
MD5 | 544f7e4d3c391b15b966aad8bd96adb2 |
|
BLAKE2b-256 | af172701fa57ba34921eef90b06f04bc95ee2f93ac09ff53599287bb6a142a32 |
File details
Details for the file embed_anything-0.1.11-cp310-cp310-manylinux_2_31_x86_64.whl
.
File metadata
- Download URL: embed_anything-0.1.11-cp310-cp310-manylinux_2_31_x86_64.whl
- Upload date:
- Size: 8.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.31+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 69022b9d32a672709379584aeb550005b0249bc678c5cbc3973b739793d16254 |
|
MD5 | bd339c3598f35bdb4aa062cf6542fbf0 |
|
BLAKE2b-256 | f65f7420c9f1bbc4f7713fe460facd31f383bd90e34e7fedca06c21da3418b20 |