fix: Intent와 Workflow ID 응답 구분 - #19
Merged
Merged
Conversation
hywznn
requested review from
EHWIYA and
taejung3852
and removed request for
taejung3852
August 6, 2026 04:27
EHWIYA
marked this pull request as ready for review
August 6, 2026 05:05
10 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
왜 필요한가요?
분석 결과에서
detectedIntent와workflowId가 모두EXPIRY_RENEWAL로 반환되고 있었습니다.detectedIntent: 사용자의 요청 종류workflowId: 실제 실행할 Knowledge Workflow의 고유 ID두 값의 역할이 다르므로 Server가 올바른 Workflow를 선택할 수 있도록 분리합니다.
무엇이 바뀌나요?
AnalysisPipeline이 Intent로 Workflow ID를 덮어쓰던 로직을 제거했습니다.workflowId에 Intent Agent가 선택한 canonical ID를 그대로 반환합니다.WF-STY-001로 수정했습니다.변경 전
{ "detectedIntent": "EXPIRY_RENEWAL", "workflowId": "EXPIRY_RENEWAL" }변경 후
{ "detectedIntent": "EXPIRY_RENEWAL", "workflowId": "WF-STY-001" }검증
병합 전 확인
detectedIntent=EXPIRY_RENEWAL,workflowId=WF-STY-001응답을 정상 처리하는지 smoke test브랜치 이름 변경으로 자동 종료된 #18을 대체합니다.
Refs #17