AI 서비스 내부 시퀀스 PlantUML 문법 오류 수정

- 병렬 처리 블록에서 'and' 키워드를 'else'로 변경
- PlantUML sequence diagram에서 par/else/end가 올바른 문법
- 수정된 파일:
  - ai-맥락기반용어설명.puml (2개 else 사용)
  - ai-전문용어감지.puml (1개 else 사용)
  - ai-회의록자동작성.puml (1개 else 사용)
- PlantUML Server 검증 통과 확인

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
kimjh 2025-10-22 16:15:39 +09:00
parent ffb4922b1d
commit afe02b3d0b
3 changed files with 4 additions and 4 deletions

View File

@ -89,7 +89,7 @@ par "과거 회의록 검색"
VectorDB --> RAG: 관련 회의록 (top 3)
deactivate VectorDB
and "사내 문서 검색"
else
RAG -> VectorDB: 벡터 유사도 검색 (문서)
activate VectorDB
note right
@ -103,7 +103,7 @@ and "사내 문서 검색"
VectorDB --> RAG: 관련 사내 문서 (top 2)
deactivate VectorDB
and "업무 이력 검색"
else
RAG -> DocStore: 전체 텍스트 검색
activate DocStore
note right

View File

@ -39,7 +39,7 @@ par "조직별 용어 사전"
Repo --> Service: orgTerms
deactivate Repo
and "산업별 표준 용어"
else
Service -> Repo: getIndustryTerms(industry)
activate Repo

View File

@ -40,7 +40,7 @@ par "회의 정보 조회"
deactivate DB
Repo --> Service: 회의 맥락 정보
deactivate Repo
and "이전 내용 조회"
else
Service -> Repo: getPreviousTranscripts(meetingId)
activate Repo
Repo -> DB: SELECT previous_content