41 lines
1.4 KiB
Markdown
41 lines
1.4 KiB
Markdown
# GreatAI
|
|
|
|
**work in progress, do not use!**
|
|
|
|
[](https://github.com/ScoutinScience/great_ai/actions/workflows/check.yml) [](https://sonar.scoutinscience.com/dashboard?id=great-ai) [](https://github.com/ScoutinScience/great_ai/actions/workflows/publish.yaml) [](https://github.com/ScoutinScience/great_ai/actions/workflows/docker.yaml)
|
|
|
|
|
|
## Find `great-ai` on [DockerHub](https://hub.docker.com/repository/docker/schmelczera/great-ai)
|
|
|
|
```sh
|
|
docker run -p6060:6060 schmelczera/great-ai
|
|
```
|
|
|
|
Find the dashboard at [http://localhost:6060](http://localhost:6060/dashboard/).
|
|
|
|
|
|
## Find `great-ai` on [PyPI](https://pypi.org/project/great-ai/)
|
|
|
|
```sh
|
|
pip install great-ai
|
|
```
|
|
|
|
```python
|
|
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 `python3 -m great-ai main.py`
|
|
|
|
Find the dashboard at [http://localhost:6060](http://localhost:6060/dashboard/).
|
|
|
|
### Contribute
|
|
|
|
```sh
|
|
pip install --upgrade --requirement dev-requirements.txt
|
|
|
|
```
|