We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4e317b commit c2a6897Copy full SHA for c2a6897
pyproject.toml
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
6
name = "superduper-framework"
7
description = "🔮 Bring AI to your favourite database 🔮"
8
readme = "README.md"
9
-version = '0.5.11'
+version = '0.5.13'
10
license = {file = "LICENSE"}
11
maintainers = [{name = "superduper.io, Inc.", email = "[email protected]"}]
12
keywords = [
superduper/rest/build.py
@@ -71,6 +71,10 @@ def build_rest_app(app: SuperDuperApp):
71
"""
72
CFG.log_colorize = False
73
74
+ @app.add("/health", method="get")
75
+ def health():
76
+ return {"status": 200}
77
+
78
@app.add("/handshake/config", method="post")
79
def handshake(cfg: str):
80
from superduper import CFG
0 commit comments