klausur-service (11 files): - cv_gutter_repair, ocr_pipeline_regression, upload_api - ocr_pipeline_sessions, smart_spell, nru_worksheet_generator - ocr_pipeline_overlays, mail/aggregator, zeugnis_api - cv_syllable_detect, self_rag backend-lehrer (17 files): - classroom_engine/suggestions, generators/quiz_generator - worksheets_api, llm_gateway/comparison, state_engine_api - classroom/models (→ 4 submodules), services/file_processor - alerts_agent/api/wizard+digests+routes, content_generators/pdf - classroom/routes/sessions, llm_gateway/inference - classroom_engine/analytics, auth/keycloak_auth - alerts_agent/processing/rule_engine, ai_processor/print_versions agent-core (5 files): - brain/memory_store, brain/knowledge_graph, brain/context_manager - orchestrator/supervisor, sessions/session_manager admin-lehrer (5 components): - GridOverlay, StepGridReview, DevOpsPipelineSidebar - DataFlowDiagram, sbom/wizard/page website (2 files): - DependencyMap, lehrer/abitur-archiv Other: nibis_ingestion, grid_detection_service, export-doclayout-onnx Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
26 lines
654 B
Python
26 lines
654 B
Python
"""
|
|
SmartSpellChecker — barrel re-export.
|
|
|
|
All implementation split into:
|
|
smart_spell_core — init, data types, language detection, word correction
|
|
smart_spell_text — full text correction, boundary repair, context split
|
|
|
|
Lizenz: Apache 2.0 (kommerziell nutzbar)
|
|
"""
|
|
|
|
# Core: data types, lang detection (re-exported for tests)
|
|
from smart_spell_core import ( # noqa: F401
|
|
_AVAILABLE,
|
|
_DIGIT_SUBS,
|
|
_SUSPICIOUS_CHARS,
|
|
_UMLAUT_MAP,
|
|
_TOKEN_RE,
|
|
_I_FOLLOWERS,
|
|
_A_FOLLOWERS,
|
|
CorrectionResult,
|
|
Lang,
|
|
)
|
|
|
|
# Text: SmartSpellChecker class (the main public API)
|
|
from smart_spell_text import SmartSpellChecker # noqa: F401
|