mirror of
https://github.com/katanemo/plano.git
synced 2026-04-30 11:26:27 +02:00
add arch provider (#494)
This commit is contained in:
parent
6a01eea813
commit
8d12a9a6e0
4 changed files with 34 additions and 16 deletions
|
|
@ -145,6 +145,8 @@ pub struct EmbeddingProviver {
|
|||
|
||||
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, Hash)]
|
||||
pub enum LlmProviderType {
|
||||
#[serde(rename = "arch")]
|
||||
Arch,
|
||||
#[serde(rename = "claude")]
|
||||
Claude,
|
||||
#[serde(rename = "deepseek")]
|
||||
|
|
@ -160,6 +162,7 @@ pub enum LlmProviderType {
|
|||
impl Display for LlmProviderType {
|
||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||
match self {
|
||||
LlmProviderType::Arch => write!(f, "arch"),
|
||||
LlmProviderType::Claude => write!(f, "claude"),
|
||||
LlmProviderType::Deepseek => write!(f, "deepseek"),
|
||||
LlmProviderType::Groq => write!(f, "groq"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue