case0 / src /case_zero /solver /__init__.py
HusseinEid's picture
Case Zero - initial public release (fully local: Qwen2.5-1.5B via llama.cpp + Supertonic, custom pixel-noir SPA via gradio.Server)
414dc55
raw
history blame contribute delete
322 Bytes
"""Solver - the deterministic fairness referee (never the LLM)."""
from __future__ import annotations
from .checker import CheckReport, Issue, check
from .discoverability import is_discoverable, undiscoverable_minimal_clues
__all__ = ["CheckReport", "Issue", "check", "is_discoverable", "undiscoverable_minimal_clues"]