split-brain-harness 1.1.0

Soul-injected two-stage LLM telemetry pipeline. Wraps any LLM with affective/intent/cognitive analysis, deterministic verification, and a Stage 0 deobfuscation normalizer. Drop-in OpenAI-compatible proxy.
Documentation
use super::InferenceEngine;
use async_trait::async_trait;

pub struct LocalEmbeddedEngine {
    pub model_identifier: String,
}

#[async_trait]
impl InferenceEngine for LocalEmbeddedEngine {
    async fn generate(
        &self,
        _system_prompt: &str,
        _prompt_payload: &str,
    ) -> Result<String, String> {
        Err(format!(
            "local-embedded backend not yet implemented (model: {}). \
             Use ollama-native or openai-compat.",
            self.model_identifier
        ))
    }
}