Metadata-Version: 2.1
Name: vortex-python
Version: 0.2.1
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.9.8,<4.0.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: bs4 (>=0.0.2,<0.0.3)
Requires-Dist: chromadb (>=0.4.22,<0.5.0)
Requires-Dist: dagster (>=1.6.4,<2.0.0)
Requires-Dist: dagster-webserver (>=1.6.4,<2.0.0)
Requires-Dist: fastapi (>=0.109.2,<0.110.0)
Requires-Dist: html2text (>=2020.1.16,<2021.0.0)
Requires-Dist: langchain (>=0.1.6,<0.2.0)
Requires-Dist: langchain-experimental (>=0.0.50,<0.0.51)
Requires-Dist: langchain-openai (>=0.0.5,<0.0.6)
Requires-Dist: langchainhub (>=0.1.14,<0.2.0)
Requires-Dist: mlflow (>=2.10.2,<3.0.0)
Requires-Dist: openai (>=1.12.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 (>=2.6.1,<3.0.0)
Requires-Dist: pymupdf (>=1.23.21,<2.0.0)
Requires-Dist: pyngrok (>=7.1.0,<8.0.0)
Requires-Dist: python-decouple (>=3.8,<4.0)
Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
Requires-Dist: python-multipart (>=0.0.7,<0.0.8)
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: twilio (>=8.13.0,<9.0.0)
Requires-Dist: typing-extensions (>=4.9.0,<5.0.0)
Requires-Dist: urllib3 (>=1.26.16,<2.0.0)
Requires-Dist: uvicorn (>=0.27.0.post1,<0.28.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-python
```

### 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
```

