Skip to content

Overview

👋 Hello

zeta provides you with all the modular lego blocks you need to build bleeding edge AI models as fast as possible.

💻 Install

You can install zeta with pip in a Python>=3.8 environment.

pip install (recommended)

The headless installation of zeta is designed for environments where graphical user interfaces (GUI) are not needed, making it more lightweight and suitable for server-side applications.

pip install zetascale

git clone (for development)

# clone repository and navigate to root directory
git clone https://github.com/kyegomez/zeta.git
cd zeta

# setup python environment and activate it
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip

# headless install
pip install -e "."

# desktop install
pip install -e ".[desktop]"
# clone repository and navigate to root directory
git clone https://github.com/kyegomez/zeta.git
cd zeta

# setup python environment and activate it
poetry env use python3.10
poetry shell

# headless install
poetry install

# desktop install
poetry install --extras "desktop"

Documentation

Learn more about zeta →

Examples

Check out zeta examples for building agents, data retrieval, and more.

Checkout zeta examples →