feat(interview): 질문 풀 부활 + 깊이 제어 n/m/k (PR1)#79
Merged
Conversation
기존엔 AI가 만든 질문 중 1개만 쓰고 매 답변마다 무조건 꼬리질문을 달아, "씨앗 1개를 한 줄로 끝까지 파는" 형태였음. 일반질문 n개(서로 다른 주제) × 질문당 꼬리 최대 m개, 총 상한 k 구조로 breadth+depth 도입. DB(V12): - interview_sessions: general_question_count(n), max_followups_per_question(m) - session_question_pool 테이블(AI 생성 일반질문 풀) Core: - POOL 콜백: 1개만 쓰던 걸 → n개 전부 풀에 저장 후 첫 질문 삽입 - 답변 처리(SessionFollowupRequester): 현재 일반질문 아래 꼬리 depth<m 면 꼬리질문(AI), 아니면 풀의 다음 일반질문 삽입(AI 불필요), 없으면 종료 - QuestionsCallbackService: advanceToNextGeneral + 일반질문 삽입/자동종료 공통화 - 세션 생성/이벤트/DTO/응답에 n·m 전파, openapi 재생성 AI: - 질문 생성은 이미 initial_question_count(n)개 생성 → 프롬프트에 "서로 다른 주제" breadth 지시 추가 프론트: - 설정 폼에 일반질문 수(n)·질문당 꼬리(m)·총 상한(k) 입력 추가 테스트: Core 세션/ArchUnit/openapi, AI 219, 프론트 25 통과. 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.
기존엔 AI가 만든 질문 중 1개만 쓰고 매 답변마다 무조건 꼬리질문을
달아, "씨앗 1개를 한 줄로 끝까지 파는" 형태였음. 일반질문 n개(서로 다른
주제) × 질문당 꼬리 최대 m개, 총 상한 k 구조로 breadth+depth 도입.
DB(V12):
Core:
AI:
프론트:
테스트: Core 세션/ArchUnit/openapi, AI 219, 프론트 25 통과.
변경 사항