Python library for creating vectorized data from text or files.
Project description
Vectoriz
Vectoriz is available on PyPI and can be installed via pip:
pip install vectoriz
A tool for generating vector embeddings for Retrieval-Augmented Generation (RAG) applications.
Overview
This project provides utilities to create, manage, and optimize vector embeddings for use in RAG systems. It streamlines the process of converting documents and data sources into vector representations suitable for semantic search and retrieval.
Features
- Document processing and chunking
- Vector embedding generation using various models
- Vector database integration
- Optimization tools for RAG performance
- Easy-to-use API for embedding creation
Installation
git clone https://github.com/PedroHenriqueDevBR/vectoriz.git
cd vectoriz
pip install -r requirements.txt
Usage
# initial informations
index_db_path = "./data/faiss_db.index" # path to save/load index
np_db_path = "./data/np_db.npz" # path to save/load numpy data
directory_path = "/home/username/Documents/" # Path where the files (.txt, .docx) are saved
# Class instance
transformer = TokenTransformer()
files_features = FilesFeature()
# Load files and create a argument class (pack with embedings, chunk_names and text_list)
argument = files_features.load_all_files_from_directory(directory_path)
# Created FAISS index to be used in queries
token_data = transformer.create_index(argument.text_list)
index = token_data.index
# To load files from VectorDB use
vector_client = VectorDBClient()
vector_client.load_data(self.index_db_path, self.np_db_path)
index = vector_client.faiss_index
argument = vector_client.file_argument
# To save data on VectorDB use
vector_client = VectorDBClient(index, argument)
vector_client.save_data(index_db_path, np_db_path)
# To search information on index
query = input(">>> ")
amoount_content = 1
response = self.transformer.search(query, self.index, self.argument.text_list, amoount_content)
print(response)
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
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 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 vectoriz-0.1.1b0.tar.gz.
File metadata
- Download URL: vectoriz-0.1.1b0.tar.gz
- Upload date:
- Size: 13.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39a1135eba9ebfa10b7935b0079e9d595bd4ff79b74b2b9f4762250994fca7ca
|
|
| MD5 |
f2060ae146780ecb72e66f94a7345308
|
|
| BLAKE2b-256 |
c0bd224bbc4d735a74340db5369e5fcf9a9acf3ddd54b7b99549fc2ee5bf7f21
|
File details
Details for the file vectoriz-0.1.1b0-py3-none-any.whl.
File metadata
- Download URL: vectoriz-0.1.1b0-py3-none-any.whl
- Upload date:
- Size: 14.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5db07c4aeec4d444bb21928190c660508aa14c831d69c28f43271b3b878f003d
|
|
| MD5 |
0566cc55957ac1c179535452938b4014
|
|
| BLAKE2b-256 |
e50e6f9f632479b2208c6bd1a0d25a8cf24cf8eb79ca6d39e35ac38681c05acf
|