fixed docs and added ollama as a first-class LLM provider

This commit is contained in:
Salman Paracha 2025-09-18 23:10:21 -07:00
parent 8d0b468345
commit f7c9d04da9
16 changed files with 1612 additions and 149 deletions

View file

@ -173,6 +173,8 @@ pub enum LlmProviderType {
TogetherAI,
#[serde(rename = "azure_openai")]
AzureOpenAI,
#[serde(rename = "ollama")]
Ollama,
}
impl Display for LlmProviderType {
@ -188,6 +190,7 @@ impl Display for LlmProviderType {
LlmProviderType::XAI => write!(f, "xai"),
LlmProviderType::TogetherAI => write!(f, "together_ai"),
LlmProviderType::AzureOpenAI => write!(f, "azure_openai"),
LlmProviderType::Ollama => write!(f, "ollama"),
}
}
}