-
Notifications
You must be signed in to change notification settings - Fork 1
Feat: 모의지원 전체 흐름 연결 및 api 연동 [JDDEV-43] #101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
The head ref may contain hidden characters: "feature/JDDEV-43-jd_parsing\u2014api-feat"
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
9325e70
Feat: job posting ai api 연동[JDDEV-43]
cc4b172
Feat: 이미지 업로드 및 채용공고 분석결과 연동 [JDDEV-43]
8901504
Fix: 홈 이동 시 로그인 세션 헤제 문제 수정 [JDDEV-43]
8d9ebd1
Merge remote-tracking branch 'origin/develop' into feature/JDDEV-43-j…
82dda24
Feat: job posting 저장, 조회, 수정, 삭제 api 연동 [JDDEV-43]
112b8ed
Feat: jd 확인과 자소서 입력 실제 데이터 흐름 연결 [JDDEV-43]
9b77580
Feat: 자소서 분석 결과 조회 api 연결 [JDDEV-43]
dceeae2
Feat: 실제 지원 흐름 및 자소서 분석 결과 api 연동 [JDDEV-43]
f752bab
Feat: 자소서 분석 비동기 API 및 결과 조회 흐름 연결 [JDDEV-43]
dbbb7fb
Feat: 공고 프로필 색상, 공고명, 직무명 api 연동 [JDDEV-43]
ce232ed
Feat: 총평 단일 카드 상단 정렬 [JDDEV-43]
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file not shown.
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win
Fallback error message is image-specific but this path also handles text/link.
moveToJdReviewWithResultis invoked for text, link, and image ingestion. Whenresult?.messageis absent and no fields were extracted, text/link users will see the image-only guidance. Consider a source-agnostic default.💬 Proposed tweak
if (!Object.values(jobPosting).some(Boolean)) { throw new Error( result?.message || - "이미지에서 공고 정보를 추출하지 못했습니다. 더 선명한 이미지를 사용해주세요.", + "공고 정보를 추출하지 못했습니다. 다른 방법으로 공고 내용을 입력해주세요.", ); }📝 Committable suggestion
🤖 Prompt for AI Agents