feat(postagger): DictionaryProtocol 추상 인터페이스 정의 - #246
Merged
Conversation
- dictionary.py: DictionaryProtocol(Protocol) 추가 - get_pos(), word_is_tag(), max_length 인터페이스 정의 - 커스텀 사전 주입 예시 docstring 포함 - template.py: BaseTemplateMatcher, EojeolTemplateMatcher, LRTemplateMatcher dictionary 타입 힌트를 DictionaryProtocol로 변경 - __init__.py: DictionaryProtocol export 추가 - test_postagger.py: Protocol 준수 및 커스텀 사전 주입 테스트 추가 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This was referenced Mar 9, 2026
Closed
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.
관련 이슈
closes #237
변경 내용
커스텀 사전 주입을 위한
DictionaryProtocol을 정의한다.DictionaryProtocol
커스텀 사전 주입 예시
변경 범위
Dictionary구현 클래스는 변경 없음 — 기존 코드 호환성 유지EojeolTemplateMatcher,LRTemplateMatcher생성자 타입 힌트를DictionaryProtocol로 변경DictionaryProtocol공개 export 추가🤖 Generated with Claude Code