| 296 | |
| 297 | #[derive(Clone, clap::Args, Default, Debug)] |
| 298 | pub struct FluxArgs { |
| 299 | /// Image height for FLUX generation. |
| 300 | #[arg(long = "flux-height", default_value_t = 1024, id = "flux_height")] |
| 301 | pub height: usize, |
| 302 | |
| 303 | /// Image width for FLUX generation. |
| 304 | #[arg(long = "flux-width", default_value_t = 1024, id = "flux_width")] |
| 305 | pub width: usize, |
| 306 | } |
| 307 | |
| 308 | #[derive(Clone, Parser, Default, Debug)] |
| 309 | pub struct SDArgs { |
nothing calls this directly
no outgoing calls
no test coverage detected