feat(plugins): move provider runtimes into bundled plugins

This commit is contained in:
Peter Steinberger
2026-03-15 16:09:15 -07:00
parent dd40741e18
commit 4adcfa3256
11 changed files with 193 additions and 340 deletions

View File

@@ -24,15 +24,33 @@ export type NormalizedPluginsConfig = {
};
export const BUNDLED_ENABLED_BY_DEFAULT = new Set<string>([
"byteplus",
"cloudflare-ai-gateway",
"device-pair",
"github-copilot",
"huggingface",
"kilocode",
"kimi-coding",
"minimax",
"minimax-portal-auth",
"modelstudio",
"moonshot",
"nvidia",
"ollama",
"openai-codex",
"openrouter",
"phone-control",
"qianfan",
"qwen-portal-auth",
"sglang",
"synthetic",
"talk-voice",
"together",
"venice",
"vercel-ai-gateway",
"vllm",
"volcengine",
"xiaomi",
]);
const normalizeList = (value: unknown): string[] => {