10 lines
374 B
Python
10 lines
374 B
Python
from fastapi import APIRouter
|
|
|
|
# 협상 엔진 헬스체크 (Chat_server /health 이식). MVC 컨벤션: 라우터는 얇게.
|
|
router = APIRouter(prefix="/v1", tags=["Health"], responses={404: {"description": "Not found"}})
|
|
|
|
|
|
@router.get(path="/health", summary="협상 에이전트 헬스체크")
|
|
async def health():
|
|
return {"status": "ok", "service": "negosium-agent"}
|