Add auto-reload, evaluation endpoint, show docs

This commit is contained in:
Andras Schmelczer 2022-05-25 10:02:16 +02:00
parent 04404f2fc4
commit a7e3dc11fd
34 changed files with 389 additions and 100 deletions

9
examples/main_service.py Executable file
View file

@ -0,0 +1,9 @@
#!/usr/bin/env python3
from great_ai import configure, create_service
configure(development_mode_override=True)
from predict_domain import predict_domain
app = create_service(predict_domain)