mirror of
https://github.com/hwanny1128/HGZero.git
synced 2026-06-12 22:59:10 +00:00
ai-python 포트 8087 완전 통일 및 meeting-ai 테스트 완료
[포트 통일] - ai-python 서비스 포트를 8087로 완전 통일 - 모든 문서에서 8086 참조 제거 - README.md, 개발 가이드 문서 전부 8087로 업데이트 변경 파일: - ai-python/README.md - develop/dev/ai-frontend-integration-guide.md - develop/dev/dev-*.md (5개 파일) [meeting-ai 테스트] 테스트 완료 항목: ✓ 회의록 통합 및 취합 ✓ AI 한줄 요약/상세 요약 생성 ✓ 회의 전체 결정사항 추출 ✓ TODO 자동 추출 (9개) ✓ 통계 정보 생성 ✓ 주요 키워드 추출 (10개) 테스트 파일: - develop/test/meeting-ai-test-data.json (테스트 데이터) - develop/test/consolidate-response.json (API 응답) - develop/test/meeting-ai-test-result.md (상세 결과서)
This commit is contained in:
+4
-4
@@ -56,10 +56,10 @@ python3 main.py
|
||||
|
||||
```bash
|
||||
# 헬스 체크
|
||||
curl http://localhost:8086/health
|
||||
curl http://localhost:8087/health
|
||||
|
||||
# SSE 스트림 테스트
|
||||
curl -N http://localhost:8086/api/v1/ai/suggestions/meetings/test-meeting/stream
|
||||
curl -N http://localhost:8087/api/v1/ai/suggestions/meetings/test-meeting/stream
|
||||
```
|
||||
|
||||
## 📡 API 엔드포인트
|
||||
@@ -123,7 +123,7 @@ ai-python/
|
||||
| `REDIS_HOST` | Redis 호스트 | 20.249.177.114 |
|
||||
| `REDIS_PORT` | Redis 포트 | 6379 |
|
||||
| `EVENTHUB_CONNECTION_STRING` | Event Hub 연결 문자열 | (선택) |
|
||||
| `PORT` | 서비스 포트 | 8086 |
|
||||
| `PORT` | 서비스 포트 | 8087 |
|
||||
|
||||
## 🔍 동작 원리
|
||||
|
||||
@@ -136,7 +136,7 @@ ai-python/
|
||||
|
||||
```bash
|
||||
# Event Hub 없이 SSE만 테스트 (Mock 데이터)
|
||||
curl -N http://localhost:8086/api/v1/ai/suggestions/meetings/test-meeting/stream
|
||||
curl -N http://localhost:8087/api/v1/ai/suggestions/meetings/test-meeting/stream
|
||||
|
||||
# 5초마다 샘플 제안사항이 발행됩니다
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user