Conversation
LLM 단독 책임 구조에서 반복 발생하던 4가지 실패 모드(actualTime 역조작, 한국어 문장 침투, matches 오판, 환각)를 코드/LLM 책임 분리로 구조적 차단. - 코드 책임: stripComplexityComments / extractUserAnnotations / bigOEquals / cleanBigO / composeSolution. 사용자 주석은 LLM 호출 전 strip 하여 actualTime 계산 격리, user 값 추출과 matches 판정은 코드가 결정. - LLM 책임: name / headerLine / description / actualTime / actualSpace / feedback / suggestion 만. 응답 스키마에서 user-*/matches 4 필드 제거. - SYSTEM_PROMPT 11.7KB → 2.0KB (83% 감소). - problemName 인덱스 폴백으로 모델의 truncation 글리치 흡수. - 클래스 wrapper(class/impl/struct/...) 투명 통과로 Python/Java 풀이의 외곽 클래스 위 주석을 메서드 풀이로 자동 귀속. - 단위 테스트 64 pass (helpers + 통합). Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
github | 01a449a | Commit Preview URL | May 01 2026, 02:42 AM |
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.
LLM 단독 책임 구조에서 반복 발생하던 4가지 실패 모드(actualTime 역조작,
한국어 문장 침투, matches 오판, 환각)를 코드/LLM 책임 분리로 구조적 차단.