From b2bd8602398c6bc3b26c37c48d52fb055ee53d8e Mon Sep 17 00:00:00 2001 From: Claude-51124 Date: Sat, 6 Dec 2025 13:36:49 +0900 Subject: [PATCH] =?UTF-8?q?docs:=20api=5Fendpoints.md=20=EC=A0=95=ED=99=95?= =?UTF-8?q?=ED=95=9C=20=EC=A0=95=EB=B3=B4=20=EB=B3=B5=EC=9B=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 참조 문서는 정확성과 완전성이 우선 - 모든 엔드포인트 상세 정보 포함 - 100줄 제한보다 정확한 정보 우선 --- book/300_architecture/reference/api_endpoints.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/book/300_architecture/reference/api_endpoints.md b/book/300_architecture/reference/api_endpoints.md index b927eec..c3fc019 100644 --- a/book/300_architecture/reference/api_endpoints.md +++ b/book/300_architecture/reference/api_endpoints.md @@ -86,9 +86,15 @@ ### Test (개발용) | 엔드포인트 | 메서드 | 설명 | |-----------|--------|------| -| `/api/test/*` | * | 테스트 엔드포인트 (router-message, message, memory, emotion) | +| `/api/test/router-message` | POST | Router 플로우 테스트 | +| `/api/test/message` | POST | 메시지 처리 테스트 | +| `/api/test/memory/store` | POST | 메모리 저장 테스트 | +| `/api/test/memory/search` | POST | 메모리 검색 테스트 | +| `/api/test/memory/stats` | GET | 메모리 통계 | +| `/api/test/emotion` | POST | 감정 분석 테스트 | +| `/api/test/health` | GET | 헬스체크 | -**참고**: `rb8001/app/router/test_endpoint.py` +**참고**: `rb8001/app/router/test_endpoint.py:29,74,110,137,165,175,200` ---