@serviceme/devtools-shared 0.4.9 → 0.4.10
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/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -607,7 +607,7 @@ declare function currencyForBaseUrl(baseUrl: string): "USD" | "CNY";
|
|
|
607
607
|
* - agnes: OpenAI-compatible at `https://apihub.agnes-ai.com/v1`
|
|
608
608
|
* → routed to OpenAIAdapter
|
|
609
609
|
* - medalsoft: OpenAI-compatible internal gateway at
|
|
610
|
-
* `https://
|
|
610
|
+
* `https://nexus.servicemecloud.com/v1` → routed to OpenAIAdapter
|
|
611
611
|
* (empty starter model list — populate via "Fetch from API")
|
|
612
612
|
*
|
|
613
613
|
* Earlier iterations of the minimax default 401'd on the team; do
|
package/dist/index.d.ts
CHANGED
|
@@ -607,7 +607,7 @@ declare function currencyForBaseUrl(baseUrl: string): "USD" | "CNY";
|
|
|
607
607
|
* - agnes: OpenAI-compatible at `https://apihub.agnes-ai.com/v1`
|
|
608
608
|
* → routed to OpenAIAdapter
|
|
609
609
|
* - medalsoft: OpenAI-compatible internal gateway at
|
|
610
|
-
* `https://
|
|
610
|
+
* `https://nexus.servicemecloud.com/v1` → routed to OpenAIAdapter
|
|
611
611
|
* (empty starter model list — populate via "Fetch from API")
|
|
612
612
|
*
|
|
613
613
|
* Earlier iterations of the minimax default 401'd on the team; do
|
package/dist/index.js
CHANGED
|
@@ -170,7 +170,7 @@ var PROVIDER_BASE_URL_PRESETS = {
|
|
|
170
170
|
{ label: "\u5168\u7403", baseUrl: "https://apihub.agnes-ai.com/v1" }
|
|
171
171
|
],
|
|
172
172
|
// Medalsoft internal LLM gateway — single OpenAI-compatible endpoint.
|
|
173
|
-
medalsoft: [{ label: "\u5185\u90E8\u7F51\u5173", baseUrl: "https://
|
|
173
|
+
medalsoft: [{ label: "\u5185\u90E8\u7F51\u5173", baseUrl: "https://nexus.servicemecloud.com/v1" }],
|
|
174
174
|
"vscode-builtin": []
|
|
175
175
|
};
|
|
176
176
|
function getProviderBaseUrlPresets(type) {
|
|
@@ -1518,7 +1518,7 @@ var BUILTIN_PROVIDER_PRESETS = {
|
|
|
1518
1518
|
// NOTE: models fetched from the gateway carry the upstream model
|
|
1519
1519
|
// ids, so the curated metadata (pricing / thinking dropdown /
|
|
1520
1520
|
// token caps) still resolves via `MODEL_METADATA` after the fetch.
|
|
1521
|
-
baseUrl: "https://
|
|
1521
|
+
baseUrl: "https://nexus.servicemecloud.com/v1",
|
|
1522
1522
|
models: []
|
|
1523
1523
|
}
|
|
1524
1524
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -95,7 +95,7 @@ var PROVIDER_BASE_URL_PRESETS = {
|
|
|
95
95
|
{ label: "\u5168\u7403", baseUrl: "https://apihub.agnes-ai.com/v1" }
|
|
96
96
|
],
|
|
97
97
|
// Medalsoft internal LLM gateway — single OpenAI-compatible endpoint.
|
|
98
|
-
medalsoft: [{ label: "\u5185\u90E8\u7F51\u5173", baseUrl: "https://
|
|
98
|
+
medalsoft: [{ label: "\u5185\u90E8\u7F51\u5173", baseUrl: "https://nexus.servicemecloud.com/v1" }],
|
|
99
99
|
"vscode-builtin": []
|
|
100
100
|
};
|
|
101
101
|
function getProviderBaseUrlPresets(type) {
|
|
@@ -1443,7 +1443,7 @@ var BUILTIN_PROVIDER_PRESETS = {
|
|
|
1443
1443
|
// NOTE: models fetched from the gateway carry the upstream model
|
|
1444
1444
|
// ids, so the curated metadata (pricing / thinking dropdown /
|
|
1445
1445
|
// token caps) still resolves via `MODEL_METADATA` after the fetch.
|
|
1446
|
-
baseUrl: "https://
|
|
1446
|
+
baseUrl: "https://nexus.servicemecloud.com/v1",
|
|
1447
1447
|
models: []
|
|
1448
1448
|
}
|
|
1449
1449
|
};
|
package/package.json
CHANGED