diff --git a/src/main.rs b/src/main.rs index 3253594..a5c17f4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -272,6 +272,20 @@ enum ModelCommands { }, } +#[derive(Subcommand, Debug)] +enum ModelCommands { + /// Refresh and cache provider models + Refresh { + /// Provider name (defaults to configured default provider) + #[arg(long)] + provider: Option, + + /// Force live refresh and ignore fresh cache + #[arg(long)] + force: bool, + }, +} + #[derive(Subcommand, Debug)] enum ChannelCommands { /// List configured channels