ag-harness 0.14.5

Agentty is an ADE (Agentic Development Environment) for structured, controllable AI-assisted software development.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Provider-specific model adapters.

mod kimi;
mod muse;
mod qwen;

pub use kimi::KimiConfig;
pub(crate) use kimi::POLICY as KIMI_POLICY;
pub(crate) use muse::POLICY as MUSE_POLICY;
pub use muse::{MUSE_SPARK_1_2, MUSE_SPARK_1_2_CONTRIBUTOR, MuseConfig};
pub(crate) use qwen::POLICY as QWEN_POLICY;
pub use qwen::QwenConfig;