crabmate 0.5.0

Rust AI agent: OpenAI-compatible chat/completions, function calling, HTTP serve, ops CLI
Documentation
1
2
3
4
5
//! 与配置合并相关的短字符串工具(按 Unicode 标量值截断)。

pub(crate) fn truncate_str_to_max_chars(s: &str, max: usize) -> String {
    s.chars().take(max).collect()
}