Metadata-Version: 2.1
Name: vortex-python
Version: 0.2.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.9,<3.13
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
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.24,<0.5.0)
Requires-Dist: dagster (>=1.6.6,<2.0.0)
Requires-Dist: dagster-webserver (>=1.6.6,<2.0.0)
Requires-Dist: fastapi (>=0.110.0,<0.111.0)
Requires-Dist: html2text (>=2024.2.26,<2025.0.0)
Requires-Dist: langchain (>=0.1.9,<0.2.0)
Requires-Dist: langchain-community (>=0.0.24,<0.0.25)
Requires-Dist: langchain-experimental (>=0.0.52,<0.0.53)
Requires-Dist: langchain-fireworks (>=0.1.1,<0.2.0)
Requires-Dist: langchain-openai (>=0.0.8,<0.0.9)
Requires-Dist: langchain-together (>=0.0.2.post1,<0.0.3)
Requires-Dist: langchainhub (>=0.1.14,<0.2.0)
Requires-Dist: mlflow (>=2.10.2,<3.0.0)
Requires-Dist: numexpr (>=2.9.0,<3.0.0)
Requires-Dist: openai (>=1.12.0,<2.0.0)
Requires-Dist: pandas (>=2.2.1,<3.0.0)
Requires-Dist: psycopg2-binary (>=2.9.9,<3.0.0)
Requires-Dist: pydantic (>=2.5.3,<3.0.0)
Requires-Dist: pymupdf (>=1.23.25,<2.0.0)
Requires-Dist: pyngrok (>=7.1.3,<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.9,<0.0.10)
Requires-Dist: selenium (>=4.18.1,<5.0.0)
Requires-Dist: semantic-router (>=0.0.27,<0.0.28)
Requires-Dist: sendgrid (>=6.11.0,<7.0.0)
Requires-Dist: sqlalchemy (>=2.0.27,<3.0.0)
Requires-Dist: twilio (>=9.0.0,<10.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.1,<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
```

