oxi-cli 0.62.0

Terminal-based AI coding assistant — multi-provider, streaming-first, extensible
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Setup subcommand handler.

use anyhow::Result;

/// Handle `oxi setup [--reset]`
pub async fn handle_setup(reset: bool) -> Result<()> {
    if reset {
        super::config::handle_config_reset(true)?;
    }
    crate::setup_wizard::run().await
}