Add auto-reload, evaluation endpoint, show docs

This commit is contained in:
Andras Schmelczer 2022-05-25 10:02:16 +02:00
parent eb7ddf1496
commit 22696c7f6f
No known key found for this signature in database
GPG key ID: 39260B5B0614A13E
34 changed files with 389 additions and 100 deletions

4
.vscode/tasks.json vendored
View file

@ -4,9 +4,9 @@
{
"label": "Format and lint Python",
"type": "shell",
"command": "source .env/bin/activate && scripts/format-python.sh great_ai && scripts/format-python.sh example",
"command": "source .env/bin/activate && scripts/format-python.sh great_ai && scripts/format-python.sh examples",
"windows": {
"command": ".env/bin/activate.bat; scripts/format-python.sh great_ai; scripts\\format-python.sh example"
"command": ".env/bin/activate.bat; scripts/format-python.sh great_ai; scripts\\format-python.sh examples"
},
"group": "test",
"presentation": {