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.
2 parents e676c75 + 4b4b14c commit f04588dCopy full SHA for f04588d
typescript-sdk/integrations/langgraph/python/ag_ui_langgraph/endpoint.py
@@ -24,4 +24,14 @@ async def event_generator():
24
return StreamingResponse(
25
event_generator(),
26
media_type=encoder.get_content_type()
27
- )
+ )
28
+
29
+ @app.get(f"{path}/health")
30
+ def health():
31
+ """Health check."""
32
+ return {
33
+ "status": "ok",
34
+ "agent": {
35
+ "name": agent.name,
36
+ }
37
typescript-sdk/integrations/langgraph/python/pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "ag-ui-langgraph"
3
-version = "0.0.6"
+version = "0.0.8"
4
description = "Implementation of the AG-UI protocol for LangGraph."
5
authors = ["Ran Shem Tov <[email protected]>"]
6
readme = "README.md"
0 commit comments