mesh-llm-cli 0.75.0

Reusable CLI support surface for mesh-llm
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![forbid(unsafe_code)]

pub mod benchmark;
pub mod models;
pub mod pager;
pub mod parser;
pub mod runtime;
pub mod shell;

pub use mesh_llm_events::LogFormat;

pub use parser::{
    AuthCommand, BinaryFlavor, Cli, Command, ConfigCommand, DiscoveryScope, DoctorCommand,
    GpuCommand, MeshDiscoveryMode, MeshGuardrailCliMode, NormalizedRuntimeArgs, PluginCommand,
    RuntimeSurface, SkillAgentArg, SkillCommand, TrustCommand, TrustPolicy,
    legacy_runtime_surface_warning, normalize_runtime_surface_args, validate_discovery_mode_args,
};