case0 / src /case_zero /suspects /__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
317 Bytes
"""Suspect layer: persona prompt assembly, compact memory, and lie selection."""
from __future__ import annotations
from .deception import most_relevant_lie
from .memory import buffer_text, ledger_text
from .persona import build_prompt
__all__ = ["buffer_text", "build_prompt", "ledger_text", "most_relevant_lie"]