Metadata-Version: 2.1
Name: vortex-python
Version: 0.1.3
Summary: Orchestrated LLM-powered Data Processing and SQL Chat Agent
License: MIT
Author: Carlos D. Escobar-Valbuena
Author-email: carlosdavidescobar@gmail.com
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: bs4 (>=0.0.2,<0.0.3)
Requires-Dist: chainlit (>=1.0.200,<2.0.0)
Requires-Dist: chromadb (>=0.4.22,<0.5.0)
Requires-Dist: dagster (>=1.6.1,<2.0.0)
Requires-Dist: dagster-webserver (>=1.6.1,<2.0.0)
Requires-Dist: duckduckgo-search (>=4.2,<5.0)
Requires-Dist: html2text (>=2020.1.16,<2021.0.0)
Requires-Dist: langchain (>=0.1.3,<0.2.0)
Requires-Dist: langchain-openai (>=0.0.3,<0.0.4)
Requires-Dist: langchainhub (>=0.1.14,<0.2.0)
Requires-Dist: mlflow (>=2.4.1,<3.0.0)
Requires-Dist: openai (>=1.9.0,<2.0.0)
Requires-Dist: pandas (>=2.2.0,<3.0.0)
Requires-Dist: psycopg2-binary (>=2.9.9,<3.0.0)
Requires-Dist: pydantic (>=1.10.9,<2.0.0)
Requires-Dist: pymupdf (>=1.23.19,<2.0.0)
Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
Requires-Dist: selenium (>=4.17.2,<5.0.0)
Requires-Dist: sendgrid (>=6.11.0,<7.0.0)
Requires-Dist: sqlalchemy (>=2.0.25,<3.0.0)
Requires-Dist: tiktoken (>=0.5.2,<0.6.0)
Requires-Dist: typing-extensions (>=4.7.0,<5.0.0)
Requires-Dist: urllib3 (>=1.26.16,<2.0.0)
Requires-Dist: wikipedia (>=1.4.0,<2.0.0)
Description-Content-Type: text/markdown

# Vortex
**Versatile Orchestrated Execution Engine for Data & AI Pipelines**


## Setup

### Quick Install

```shell
python -m pip install vortex
```

### Build from source

Clone the repository

```shell
git clone https://github.com/Broomva/vortex.git
```

Install the package

``` shell
cd vortex && make install
```

### Build manually

After cloning, create a virtual environment

```shell
conda create -n vortex python=3.10
conda activate vortex
```

Install the requirements

```shell
pip install -r requirements.txt
```

Run the python installation

```shell
python setup.py install
```

