@vellumai/cli 0.10.9-dev.202607160853.d4379b6 → 0.10.9-dev.202607161044.1a55a2d
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -75,6 +75,7 @@ const PROVIDER_LABELS: Record<LlmProviderId, string> = {
|
|
|
75
75
|
minimax: "MiniMax",
|
|
76
76
|
atlascloud: "Atlas Cloud",
|
|
77
77
|
together: "Together AI",
|
|
78
|
+
baseten: "Baseten",
|
|
78
79
|
};
|
|
79
80
|
|
|
80
81
|
export function formatProviderName(provider: LlmProviderId): string {
|
|
@@ -190,6 +191,9 @@ export function inferProviderFromModel(model: string): string | undefined {
|
|
|
190
191
|
if (model.startsWith("deepseek-ai/")) {
|
|
191
192
|
return "atlascloud";
|
|
192
193
|
}
|
|
194
|
+
if (model.startsWith("thinkingmachines/")) {
|
|
195
|
+
return "baseten";
|
|
196
|
+
}
|
|
193
197
|
if (model.includes("/")) {
|
|
194
198
|
return "openrouter";
|
|
195
199
|
}
|
|
@@ -30,6 +30,7 @@ export const LLM_PROVIDER_ENV_VAR_NAMES: Record<string, string> = {
|
|
|
30
30
|
minimax: "MINIMAX_API_KEY",
|
|
31
31
|
atlascloud: "ATLASCLOUD_API_KEY",
|
|
32
32
|
together: "TOGETHER_API_KEY",
|
|
33
|
+
baseten: "BASETEN_API_KEY",
|
|
33
34
|
};
|
|
34
35
|
|
|
35
36
|
/** Search-provider env var names. Mirrors `SEARCH_PROVIDER_CATALOG` BYOK entries. */
|