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
//! `structured_patch` 实现目录(自单文件拆分以降低圈复杂度)。

mod execute;

pub(super) fn structured_patch_execute(
    args_json: &str,
    working_dir: &std::path::Path,
    ctx: &crate::cm_tools::tools::ToolContext<'_>,
) -> String {
    execute::run_structured_patch_display(args_json, working_dir, ctx)
}