- CLI: nyx-probe scan with --summary/--delta/--full flags - DriftProbe: training safety with Gini coefficient + Angular Drift - Vocabulary: 54 terms (30 nimmerverse + 24 German philosophical) - Sentinels: ANCHOR/BRIDGE/CANARY/TARGET monitoring system Key findings: - German philosophical terms: 37.5% depth≥2 hit rate (vs 3.3% nimmerverse) - Super Cluster validated: heart cross-lang sim = 1.000 - Isolated Zone confirmed: being EN↔DE sim = 0.195 - Gini signature: Philosophy ~0.5 (diffuse), Technical ~0.8 (sparse) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
28 lines
642 B
Python
28 lines
642 B
Python
"""Probe implementations for nyx-probing."""
|
|
from .base import BaseProbe
|
|
from .surface_probe import SurfaceProbe, CompletionCategory
|
|
from .echo_probe import EchoProbe
|
|
from .multilingual_probe import (
|
|
MultilingualTriangulationProbe,
|
|
LanguageZone,
|
|
LANGUAGES,
|
|
GroundingResult,
|
|
DeepeningResult,
|
|
TriangulationResult,
|
|
MultilingualProbeResult,
|
|
)
|
|
|
|
__all__ = [
|
|
"BaseProbe",
|
|
"SurfaceProbe",
|
|
"CompletionCategory",
|
|
"EchoProbe",
|
|
"MultilingualTriangulationProbe",
|
|
"LanguageZone",
|
|
"LANGUAGES",
|
|
"GroundingResult",
|
|
"DeepeningResult",
|
|
"TriangulationResult",
|
|
"MultilingualProbeResult",
|
|
]
|