feat(interview): 짧은 확인 질문/답변 커버#128
Merged
Merged
Conversation
실전 면접 후 "면접관이 '그럼 XX 하신 건가요?' 같은 짧은 확인 질문도 하고, '네 맞습니다' 같은 단답도 자연스럽게 처리되면 좋겠다"는 요청 반영. AI-only, 콜백 스키마 무변경. - followup 프롬프트: 매 턴 깊이 파기 대신 짧은 확인형(예/아니오) 질문도 던지도록 안내. 직전 답변이 확인형 단답·정정이면 specificity/logic/correctness=null·structure=NONE 으로 두어 짧다는 이유로 감점하지 않도록 지시. - feedback_consumer._is_short_confirmation: 확인/부정 표현으로 시작하는 짧은 단답을 결정론적으로 감지해 질문별 복기(코칭) 대상에서 제외 — '네 맞습니다'에 모범답안·리라이트가 붙지 않게 한다. 충분히 긴 정정/실질 답변은 일반 답변으로 코칭 유지. - 테스트 11건 추가(감지 + 코칭 제외), 전체 295 passed, flake8 clean. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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.
변경 사항
실전 면접 후 요청: 면접관이 "그럼 XX 하신 건가요?" 같은 짧은 확인 질문도 던지고, "네 맞습니다" / "아뇨, 그건 ~~" 같은 짧은 답변도 자연스럽게 처리. AI-only, 콜백/출력 스키마 무변경.
면접관 — 짧은 확인형 질문
followup_generation프롬프트: 매 턴 깊이 파기만 하지 말고, 지원자가 특정 사실/선택을 말하면 짧은 확인형(예/아니오) 질문으로 사실관계를 짚는 것도 자연스럽다고 안내(단, 매 턴 확인형만 반복 금지).지원자 — 짧은 확인 답변 처리
feedback_consumer._is_short_confirmation(확인/부정 표현으로 시작 + 어절·길이 짧음)이 그런 단답을 질문별 복기(모범답안·리라이트·코칭) 대상에서 제외. "네 맞습니다"에 모범답안이 붙는 어색함 해소.검증
test_short_confirmation.py11건(감지 + 코칭 제외 통합), 전체 295 passed, flake8 clean.비고
<intent>/<question>/<meta>)·callback.questions스키마 변경 없음 → backend/frontend 무영향.🤖 Generated with Claude Code