crabmate 0.4.0

Rust AI agent: OpenAI-compatible chat/completions, function calling, HTTP serve, ops CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! 面向**用户可见**正文的轻量清洗(聊天、规划摘要等)。
//!
//! 与 **`redact`** 分工不同:本模块不负责日志脱敏或 HTTP 体截断。

mod assistant_tail;

pub use assistant_tail::{
    dedupe_plain_assistant_preamble, naturalize_assistant_plan_prose_tail,
    naturalize_plan_step_description,
};

#[cfg(test)]
mod tests;