Zero-config planoai up: pass-through proxy with auto-detected providers (#890)

This commit is contained in:
Adil Hafeez 2026-04-17 13:11:12 -07:00 committed by GitHub
parent 711e4dd07d
commit 1f701258cb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 291 additions and 4 deletions

View file

@ -391,6 +391,8 @@ pub enum LlmProviderType {
AmazonBedrock,
#[serde(rename = "plano")]
Plano,
#[serde(rename = "digitalocean")]
DigitalOcean,
}
impl Display for LlmProviderType {
@ -412,6 +414,7 @@ impl Display for LlmProviderType {
LlmProviderType::Qwen => write!(f, "qwen"),
LlmProviderType::AmazonBedrock => write!(f, "amazon_bedrock"),
LlmProviderType::Plano => write!(f, "plano"),
LlmProviderType::DigitalOcean => write!(f, "digitalocean"),
}
}
}