feat: added arceeai as a provider (#818)

- Added ArceeAI as a provider  - https://conductor.arcee.ai/v1
- Compatible with ArceeAI SLMs (Virtuoso, Maestro)
- Works with ArceeAI's Conductor auto‑router models (auto, auto‑tool),
once #817 is merged
This commit is contained in:
Pranav
2025-05-10 18:16:28 -05:00
committed by GitHub
parent 19262f632f
commit 646e7e9c11
2 changed files with 11 additions and 0 deletions

View File

@@ -105,6 +105,7 @@ export OPENAI_API_KEY="your-api-key-here"
> - deepseek
> - xai
> - groq
> - arceeai
> - any other provider that is compatible with the OpenAI API
>
> If you use a provider other than OpenAI, you will need to set the API key for the provider in the config file or in the environment variable as:
@@ -434,6 +435,11 @@ Below is a comprehensive example of `config.json` with multiple custom providers
"name": "Groq",
"baseURL": "https://api.groq.com/openai/v1",
"envKey": "GROQ_API_KEY"
},
"arceeai": {
"name": "ArceeAI",
"baseURL": "https://conductor.arcee.ai/v1",
"envKey": "ARCEEAI_API_KEY"
}
},
"history": {

View File

@@ -47,4 +47,9 @@ export const providers: Record<
baseURL: "https://api.groq.com/openai/v1",
envKey: "GROQ_API_KEY",
},
arceeai: {
name: "ArceeAI",
baseURL: "https://conductor.arcee.ai/v1",
envKey: "ARCEEAI_API_KEY",
},
};