7 lines
123 B
Python
7 lines
123 B
Python
from .agent import create_agent_app
|
|
|
|
app = create_agent_app()
|
|
|
|
def health() -> dict[str, str]:
|
|
return {"status": "ok"}
|