oy-cli 0.13.0

Autonomous OpenCode agent and deterministic repository audit and review workflows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! `oy model` convenience argument types.

use clap::Args;

#[derive(Debug, Args, Clone)]
pub(super) struct ModelArgs {
    #[arg(
        value_name = "MODEL",
        help = "Optional model/provider substring filter for the OpenCode 2 model API"
    )]
    pub(super) model: Option<String>,
}