@jacobbd/relay-ai 0.10.1 → 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.
@@ -50,7 +50,7 @@ import { join as join2 } from "path";
50
50
  // package.json
51
51
  var package_default = {
52
52
  name: "@jacobbd/relay-ai",
53
- version: "0.10.1",
53
+ version: "0.11.0",
54
54
  publishConfig: {
55
55
  access: "public"
56
56
  },
@@ -82,7 +82,7 @@ var package_default = {
82
82
  "README.md"
83
83
  ],
84
84
  engines: {
85
- node: ">=18"
85
+ node: ">=22"
86
86
  },
87
87
  scripts: {
88
88
  build: "tsup && tsup --config tsup.core.config.ts && node scripts/copy-ui-assets.mjs",
@@ -96,35 +96,34 @@ var package_default = {
96
96
  prepublishOnly: "npm run release:check && npm run build"
97
97
  },
98
98
  dependencies: {
99
- "@ai-sdk/alibaba": "^1.0.26",
100
- "@ai-sdk/amazon-bedrock": "^4.0.113",
101
- "@ai-sdk/azure": "^3.0.70",
102
- "@ai-sdk/cerebras": "^2.0.54",
103
- "@ai-sdk/cohere": "^3.0.36",
104
- "@ai-sdk/deepinfra": "^2.0.52",
105
- "@ai-sdk/gateway": "^3.0.125",
106
- "@ai-sdk/google": "^3.0.80",
107
- "@ai-sdk/google-vertex": "^4.0.142",
108
- "@ai-sdk/groq": "^3.0.39",
109
- "@ai-sdk/mistral": "^3.0.37",
110
- "@ai-sdk/openai": "^3.0.68",
111
- "@ai-sdk/openai-compatible": "^2.0.48",
112
- "@ai-sdk/perplexity": "^3.0.33",
113
- "@ai-sdk/togetherai": "^2.0.53",
114
- "@ai-sdk/vercel": "^2.0.50",
115
- "@ai-sdk/xai": "^3.0.93",
99
+ "@ai-sdk/alibaba": "^2.0.41",
100
+ "@ai-sdk/amazon-bedrock": "^5.0.76",
101
+ "@ai-sdk/azure": "^4.0.63",
102
+ "@ai-sdk/cerebras": "^3.0.44",
103
+ "@ai-sdk/cohere": "^4.0.37",
104
+ "@ai-sdk/deepinfra": "^3.0.44",
105
+ "@ai-sdk/gateway": "^4.0.75",
106
+ "@ai-sdk/google": "^4.0.64",
107
+ "@ai-sdk/google-vertex": "^5.0.76",
108
+ "@ai-sdk/groq": "^4.0.37",
109
+ "@ai-sdk/mistral": "^4.0.39",
110
+ "@ai-sdk/openai": "^4.0.60",
111
+ "@ai-sdk/openai-compatible": "^3.0.44",
112
+ "@ai-sdk/perplexity": "^4.0.39",
113
+ "@ai-sdk/togetherai": "^3.0.45",
114
+ "@ai-sdk/vercel": "^3.0.30",
115
+ "@ai-sdk/xai": "^4.0.54",
116
116
  "@clack/prompts": "^0.9.1",
117
- "@openrouter/ai-sdk-provider": "^2.9.0",
118
- ai: "^6.0.197",
117
+ "@openrouter/ai-sdk-provider": "^3.0.0",
118
+ ai: "^7.0.93",
119
119
  "cross-spawn": "^7.0.6",
120
- "gitlab-ai-provider": "^6.8.0",
120
+ "gitlab-ai-provider": "^6.15.0",
121
121
  graphql: "^16.14.2",
122
122
  "ipaddr.js": "^2.4.0",
123
123
  "node-forge": "^1.4.0",
124
124
  open: "^11.0.0",
125
125
  picocolors: "^1.1.1",
126
126
  "smol-toml": "^1.6.1",
127
- "venice-ai-sdk-provider": "^2.0.2",
128
127
  ws: "^8.21.0",
129
128
  zod: "^3.25.76"
130
129
  },
@@ -874,6 +873,9 @@ var OPENAI_CHAT_COMPLETIONS_ONLY = [
874
873
  function shouldUseOpenAiResponsesEndpoint(modelId) {
875
874
  return !OPENAI_CHAT_COMPLETIONS_ONLY.includes(modelId.toLowerCase());
876
875
  }
876
+ function resolveProviderNpm(npm) {
877
+ return npm === "venice-ai-sdk-provider" ? "@ai-sdk/openai-compatible" : npm;
878
+ }
877
879
  function findCreateFactory(mod) {
878
880
  for (const value of Object.values(mod)) {
879
881
  if (typeof value === "function" && value.name.startsWith("create")) {
@@ -903,7 +905,8 @@ async function loadSdkProviderFactory(npm) {
903
905
  return cached;
904
906
  }
905
907
  async function createLanguageModel(spec) {
906
- const { npm, modelId, apiKey, baseURL } = spec;
908
+ const npm = resolveProviderNpm(spec.npm);
909
+ const { modelId, apiKey, baseURL } = spec;
907
910
  if (npm === VERTEX_ANTHROPIC_NPM) {
908
911
  if (!spec.vertex?.project) {
909
912
  throw new Error("Vertex project is required for @ai-sdk/google-vertex/anthropic");
@@ -1997,7 +2000,7 @@ var PROVIDER_TEMPLATES = [
1997
2000
  id: "venice",
1998
2001
  name: "Venice AI",
1999
2002
  authType: "api",
2000
- npm: "venice-ai-sdk-provider",
2003
+ npm: "@ai-sdk/openai-compatible",
2001
2004
  defaultBaseUrl: "https://api.venice.ai/api/v1",
2002
2005
  signupUrl: "https://venice.ai/settings/api",
2003
2006
  modelSource: "api-list",
@@ -2317,7 +2320,7 @@ async function withReasoningProviderOptions(model, providerOptions) {
2317
2320
  // interface; everything Core builds is a concrete current-spec model.
2318
2321
  model,
2319
2322
  middleware: {
2320
- specificationVersion: "v3",
2323
+ specificationVersion: "v4",
2321
2324
  transformParams: async ({ params }) => ({
2322
2325
  ...params,
2323
2326
  providerOptions: deepMergeProviderOptions(
@@ -2333,7 +2336,7 @@ async function withRequestHeaders(model, headers) {
2333
2336
  return wrapLanguageModel2({
2334
2337
  model,
2335
2338
  middleware: {
2336
- specificationVersion: "v3",
2339
+ specificationVersion: "v4",
2337
2340
  transformParams: async ({ params }) => ({
2338
2341
  ...params,
2339
2342
  headers: mergeHeaders(