great-ai/README.md

1.8 KiB

logo GreatAI

GreatAI helps you easily transform your prototype AI code into production-ready software.

Test Quality Gate Status Publish on PyPI Publish on DockerHub Downloads

Check out the documentation here.

Find great-ai on DockerHub

docker run -p6060:6060 schmelczera/great-ai

Find the dashboard at http://localhost:6060.

Find great-ai on PyPI

pip install great-ai
from great_ai import GreatAI

@GreatAI.create
def hello_world(name: str) -> str:
    return f"Hello {name}!"

Create a new file called main.py

Deploy by executing great-ai main.py

Or: great_ai main.py

Or: python3 -m great_ai main.py

Find the dashboard at http://localhost:6060.

Contribute

Install

python3 -m venv --copies .env
source .env/bin/activate
python3 -m pip install flit
python3 -m flit install --symlink --deps=all

Documentation

mkdocs serve --dirtyreload