Skip to main content

Python library for creating vectorized data from text or files.

Project description

Vectoriz

PyPI version

GitHub license

Python Version

GitHub issues

GitHub stars

GitHub forks

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vectoriz-0.0.5.tar.gz (9.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vectoriz-0.0.5-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file vectoriz-0.0.5.tar.gz.

File metadata

  • Download URL: vectoriz-0.0.5.tar.gz
  • Upload date:
  • Size: 9.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for vectoriz-0.0.5.tar.gz
Algorithm Hash digest
SHA256 ca60839dca6c4ea4678c4ae943029a146bff4da6b12d903e568c3d260fbe2c8a
MD5 5d7670e709791ff86c79cc6268ab6cd2
BLAKE2b-256 c58abc2c346ffc14c97f98b0c73f72caf6fba112b9591c12f55ba9c9973cf872

See more details on using hashes here.

File details

Details for the file vectoriz-0.0.5-py3-none-any.whl.

File metadata

  • Download URL: vectoriz-0.0.5-py3-none-any.whl
  • Upload date:
  • Size: 9.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for vectoriz-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 8c212e97a4ac74b59a942d06413c5d1583f1e4f71921f972cd439b146f595a3e
MD5 1926a1ea21050a0505a8d8493ad23bf3
BLAKE2b-256 d54ca48594827a23b489050390c4a695c4f80a730553f26a0add5b0311d4fce3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page