@jacobbd/relay-ai 0.10.0 → 0.11.0
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/README.md +1 -1
- package/dist/{chunk-2NXLK3O6.js → chunk-G6QWYYAY.js} +36 -33
- package/dist/chunk-G6QWYYAY.js.map +1 -0
- package/dist/{chunk-P4IS6537.js → chunk-SFN33VAE.js} +5 -3
- package/dist/chunk-SFN33VAE.js.map +1 -0
- package/dist/cli.js +27 -27
- package/dist/cli.js.map +1 -1
- package/dist/core/index.js +33 -28
- package/dist/core/index.js.map +1 -1
- package/dist/{provider-templates-7M24FAAI.js → provider-templates-TZOM62WC.js} +2 -2
- package/dist/{ui-command-6ZMM5K5K.js → ui-command-RJVKDGGG.js} +4 -4
- package/package.json +22 -23
- package/dist/chunk-2NXLK3O6.js.map +0 -1
- package/dist/chunk-P4IS6537.js.map +0 -1
- /package/dist/{provider-templates-7M24FAAI.js.map → provider-templates-TZOM62WC.js.map} +0 -0
- /package/dist/{ui-command-6ZMM5K5K.js.map → ui-command-RJVKDGGG.js.map} +0 -0
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
listAddableTemplates,
|
|
8
8
|
listSupportedTemplates,
|
|
9
9
|
listVisibleOAuthTemplates
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-SFN33VAE.js";
|
|
11
11
|
init_provider_templates();
|
|
12
12
|
export {
|
|
13
13
|
PROVIDER_TEMPLATES,
|
|
@@ -17,4 +17,4 @@ export {
|
|
|
17
17
|
listSupportedTemplates,
|
|
18
18
|
listVisibleOAuthTemplates
|
|
19
19
|
};
|
|
20
|
-
//# sourceMappingURL=provider-templates-
|
|
20
|
+
//# sourceMappingURL=provider-templates-TZOM62WC.js.map
|
|
@@ -85,14 +85,14 @@ import {
|
|
|
85
85
|
updateCustomEndpointProvider,
|
|
86
86
|
validateCustomEndpointUrl,
|
|
87
87
|
writeSecureLogLine
|
|
88
|
-
} from "./chunk-
|
|
88
|
+
} from "./chunk-G6QWYYAY.js";
|
|
89
89
|
import {
|
|
90
90
|
__toCommonJS,
|
|
91
91
|
init_provider_templates,
|
|
92
92
|
listAddableTemplates,
|
|
93
93
|
listVisibleOAuthTemplates,
|
|
94
94
|
provider_templates_exports
|
|
95
|
-
} from "./chunk-
|
|
95
|
+
} from "./chunk-SFN33VAE.js";
|
|
96
96
|
|
|
97
97
|
// src/ui-command.ts
|
|
98
98
|
import { createServer } from "http";
|
|
@@ -958,7 +958,7 @@ async function handleAddProvider(req, res) {
|
|
|
958
958
|
sendJson(res, 400, { error: "templateId required" });
|
|
959
959
|
return;
|
|
960
960
|
}
|
|
961
|
-
const { listSupportedTemplates } = await import("./provider-templates-
|
|
961
|
+
const { listSupportedTemplates } = await import("./provider-templates-TZOM62WC.js");
|
|
962
962
|
const template = listSupportedTemplates().find((t) => t.id === templateId);
|
|
963
963
|
if (!template) {
|
|
964
964
|
sendJson(res, 404, { error: `Template '${templateId}' not found` });
|
|
@@ -1810,4 +1810,4 @@ export {
|
|
|
1810
1810
|
resolveUiShutdownDecision,
|
|
1811
1811
|
runUiCommand
|
|
1812
1812
|
};
|
|
1813
|
-
//# sourceMappingURL=ui-command-
|
|
1813
|
+
//# sourceMappingURL=ui-command-RJVKDGGG.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jacobbd/relay-ai",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"README.md"
|
|
33
33
|
],
|
|
34
34
|
"engines": {
|
|
35
|
-
"node": ">=
|
|
35
|
+
"node": ">=22"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build": "tsup && tsup --config tsup.core.config.ts && node scripts/copy-ui-assets.mjs",
|
|
@@ -46,35 +46,34 @@
|
|
|
46
46
|
"prepublishOnly": "npm run release:check && npm run build"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@ai-sdk/alibaba": "^
|
|
50
|
-
"@ai-sdk/amazon-bedrock": "^
|
|
51
|
-
"@ai-sdk/azure": "^
|
|
52
|
-
"@ai-sdk/cerebras": "^
|
|
53
|
-
"@ai-sdk/cohere": "^
|
|
54
|
-
"@ai-sdk/deepinfra": "^
|
|
55
|
-
"@ai-sdk/gateway": "^
|
|
56
|
-
"@ai-sdk/google": "^
|
|
57
|
-
"@ai-sdk/google-vertex": "^
|
|
58
|
-
"@ai-sdk/groq": "^
|
|
59
|
-
"@ai-sdk/mistral": "^
|
|
60
|
-
"@ai-sdk/openai": "^
|
|
61
|
-
"@ai-sdk/openai-compatible": "^
|
|
62
|
-
"@ai-sdk/perplexity": "^
|
|
63
|
-
"@ai-sdk/togetherai": "^
|
|
64
|
-
"@ai-sdk/vercel": "^
|
|
65
|
-
"@ai-sdk/xai": "^
|
|
49
|
+
"@ai-sdk/alibaba": "^2.0.41",
|
|
50
|
+
"@ai-sdk/amazon-bedrock": "^5.0.76",
|
|
51
|
+
"@ai-sdk/azure": "^4.0.63",
|
|
52
|
+
"@ai-sdk/cerebras": "^3.0.44",
|
|
53
|
+
"@ai-sdk/cohere": "^4.0.37",
|
|
54
|
+
"@ai-sdk/deepinfra": "^3.0.44",
|
|
55
|
+
"@ai-sdk/gateway": "^4.0.75",
|
|
56
|
+
"@ai-sdk/google": "^4.0.64",
|
|
57
|
+
"@ai-sdk/google-vertex": "^5.0.76",
|
|
58
|
+
"@ai-sdk/groq": "^4.0.37",
|
|
59
|
+
"@ai-sdk/mistral": "^4.0.39",
|
|
60
|
+
"@ai-sdk/openai": "^4.0.60",
|
|
61
|
+
"@ai-sdk/openai-compatible": "^3.0.44",
|
|
62
|
+
"@ai-sdk/perplexity": "^4.0.39",
|
|
63
|
+
"@ai-sdk/togetherai": "^3.0.45",
|
|
64
|
+
"@ai-sdk/vercel": "^3.0.30",
|
|
65
|
+
"@ai-sdk/xai": "^4.0.54",
|
|
66
66
|
"@clack/prompts": "^0.9.1",
|
|
67
|
-
"@openrouter/ai-sdk-provider": "^
|
|
68
|
-
"ai": "^
|
|
67
|
+
"@openrouter/ai-sdk-provider": "^3.0.0",
|
|
68
|
+
"ai": "^7.0.93",
|
|
69
69
|
"cross-spawn": "^7.0.6",
|
|
70
|
-
"gitlab-ai-provider": "^6.
|
|
70
|
+
"gitlab-ai-provider": "^6.15.0",
|
|
71
71
|
"graphql": "^16.14.2",
|
|
72
72
|
"ipaddr.js": "^2.4.0",
|
|
73
73
|
"node-forge": "^1.4.0",
|
|
74
74
|
"open": "^11.0.0",
|
|
75
75
|
"picocolors": "^1.1.1",
|
|
76
76
|
"smol-toml": "^1.6.1",
|
|
77
|
-
"venice-ai-sdk-provider": "^2.0.2",
|
|
78
77
|
"ws": "^8.21.0",
|
|
79
78
|
"zod": "^3.25.76"
|
|
80
79
|
},
|