agentswitch 0.6.0

一个通用的 Code Agent 工具配置切换器,支持将任意 OpenAI/Anthropic 协议模型接入到主流 Code Agent CLI 工具中
1
2
3
4
5
6
7
8
9
10
pub mod detector;
pub mod error;
pub mod health;
pub mod reporter;
pub mod run;

pub use detector::{ConfigFormat, ToolDetection, ToolStatus};
pub use health::HealthCheckResult;
pub use reporter::SystemInfo;
pub use run::{run_detect, run_doctor};