swarm-engine-ui 0.1.6

CLI and Desktop UI for SwarmEngine
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! CLI command implementations

pub mod eval;
pub mod init;
pub mod learn;
pub mod llama;
pub mod lora;
pub mod profile;
pub mod run;

// Re-exports
pub use eval::cmd_eval;
pub use init::{cmd_config, cmd_init, cmd_open, OpenTarget};
pub use learn::{cmd_learn, LearnAction};
pub use llama::{cmd_llama, LlamaAction};
pub use lora::{cmd_lora, LoraAction};
pub use profile::{cmd_profile, ProfileAction};
pub use run::cmd_run;