pixforge 0.3.1

Fast CLI to generate images via OpenAI, Azure, Gemini, LocalAI, and other image-gen providers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Interactive setup wizard for pixforge profiles.
//!
//! See [`wizard::run`] for the entry point. The wizard is structured around
//! four trait seams ([`Prompter`], [`ConfigStore`], [`ShellRcWriter`],
//! [`ConnectionTester`]) so unit tests can drive the entire flow with
//! canned answers and no real IO.

pub mod config_edit;
pub mod io;
pub mod traits;
pub mod wizard;

pub use traits::{AppendOutcome, ConfigStore, ConnectionTester, Prompter, ShellRcWriter, TestOutcome};
pub use wizard::{run, EnvProbe, WizardDeps, WizardResult};