rho-coding-agent 0.24.1

A lightweight agent harness inspired by Pi
Documentation
use crate::{
    model::ModelError,
    provider::{self, MissingCredential, ProviderAuthKind},
};

#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum AuthMode {
    ApiKey,
    Codex,
}

#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum ProviderRuntime {
    OpenAi { auth_mode: AuthMode },
    Anthropic,
    GithubCopilot,
}

pub fn provider_runtime(provider: &str) -> Option<ProviderRuntime> {
    let descriptor = provider::provider_descriptor(provider)?;
    Some(match descriptor.id {
        provider::ProviderId::OpenAi => ProviderRuntime::OpenAi {
            auth_mode: AuthMode::ApiKey,
        },
        provider::ProviderId::OpenAiCodex => ProviderRuntime::OpenAi {
            auth_mode: AuthMode::Codex,
        },
        provider::ProviderId::Anthropic => ProviderRuntime::Anthropic,
        provider::ProviderId::GithubCopilot => ProviderRuntime::GithubCopilot,
    })
}

pub fn missing_credential_error(missing: MissingCredential) -> ModelError {
    match missing {
        MissingCredential::OpenAiApiKey => ModelError::MissingApiKey,
        MissingCredential::AnthropicApiKey => ModelError::MissingAnthropicApiKey,
    }
}

pub fn missing_credentials_error(provider_name: &str) -> ModelError {
    match provider::provider_descriptor(provider_name).map(|descriptor| descriptor.auth_kind) {
        Some(ProviderAuthKind::ApiKey { missing, .. }) => missing_credential_error(missing),
        Some(ProviderAuthKind::CodexOAuth { .. }) => ModelError::MissingCodexAuth,
        Some(ProviderAuthKind::GithubCopilotDevice { .. }) => ModelError::MissingGithubCopilotAuth,
        None => ModelError::UnsupportedProvider(provider_name.to_string()),
    }
}