Transform your prototype AI code into production-ready software. https://great-ai.scoutinscience.com
Find a file
2022-07-11 12:10:39 +02:00
.github Merge branch 'main' of github.com:schmelczer/great-ai 2022-07-08 21:41:16 +02:00
.vscode Improve docs 2022-07-10 19:43:39 +02:00
docs Fix formatting 2022-07-11 09:01:14 +02:00
great_ai Fix wrong path 2022-07-11 12:10:39 +02:00
scripts Fix typing and minor issues 2022-07-07 14:12:44 +02:00
tests Update tests 2022-07-10 19:38:35 +02:00
.dockerignore Update docker image 2022-07-09 21:50:22 +02:00
.gitignore Improve API 2022-06-26 23:31:15 +02:00
Dockerfile Update docker image 2022-07-09 21:50:22 +02:00
LICENSE Create LICENSE 2022-07-04 14:58:31 +02:00
mkdocs.yaml Improve docs 2022-07-10 19:43:39 +02:00
pyproject.toml Update tags 2022-07-10 19:39:10 +02:00
README.md Improve docs 2022-07-10 19:43:39 +02:00

logo GreatAI

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

Sonar line coverage Sonar technical debt Sonar LoC Test 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