Conversation
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! 이 PR은 인터뷰 채팅 스트림 테스트가 AI 릴레이 페이로드 사양과 일치하도록 업데이트합니다. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
PR의 테스트 수정 사항은 올바릅니다. 다만, 리뷰 중 SendInterviewChatReqDTO는 단일 insightId를, InterviewService.sendChatStream은 ID 배열을 인자로 받는 불일치를 확인했습니다. 이는 API와 서비스 계층 간의 명세 불일치로, 혼란을 유발할 수 있습니다. 향후 API에서 여러 ID를 지원할 계획이 아니라면, 서비스 메서드 시그니처를 DTO와 일치시키는 (..., insightId?: number) 형태로 변경하여 계층 간 책임을 명확히 하는 것을 제안합니다.
Summary
인터뷰 채팅 스트림 테스트가 현재 AI relay payload 스펙과 일치하도록 수정했습니다.
Changes
InterviewService.sendChatStream()테스트 기대값을 숫자 배열에서 문자열 배열로 수정mentioned_insight_ids직렬화 방식과 테스트를 일치시킴Type of Change
해당하는 항목에 체크해주세요:
Target Environment
배포 대상 브랜치를 선택해주세요:
dev)main)Related Issues
관련 이슈를 연결해주세요:
Testing
테스트 방법을 작성해주세요:
pnpm run build)pnpm run lint)pnpm test -- src/modules/interview/application/services/interview.service.spec.ts: 통과pnpm run test: 통과pnpm run build: 통과pnpm run lint: 통과Checklist
PR 생성 전 확인사항:
docs/development/CODE_STYLE.md)docs/development/GIT_CONVENTIONS.md)docs/development/NAMING_CONVENTIONS.md)pnpm run build)pnpm run lint)Screenshots (Optional)
N/A
Additional Notes
#323의 검증 상태를 맞추기 위한 선행 수정입니다.