@ai-sdk/gateway 3.0.97 → 3.0.98
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/CHANGELOG.md +6 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/gateway-fetch-metadata.ts +1 -1
- package/src/gateway-model-entry.ts +1 -1
package/dist/index.mjs
CHANGED
|
@@ -540,7 +540,7 @@ var gatewayAvailableModelsResponseSchema = lazySchema4(
|
|
|
540
540
|
provider: z4.string(),
|
|
541
541
|
modelId: z4.string()
|
|
542
542
|
}),
|
|
543
|
-
modelType: z4.enum(["embedding", "image", "language", "video"]).nullish()
|
|
543
|
+
modelType: z4.enum(["embedding", "image", "language", "reranking", "video"]).nullish()
|
|
544
544
|
})
|
|
545
545
|
)
|
|
546
546
|
})
|
|
@@ -1651,7 +1651,7 @@ async function getVercelRequestId() {
|
|
|
1651
1651
|
import { withUserAgentSuffix } from "@ai-sdk/provider-utils";
|
|
1652
1652
|
|
|
1653
1653
|
// src/version.ts
|
|
1654
|
-
var VERSION = true ? "3.0.
|
|
1654
|
+
var VERSION = true ? "3.0.98" : "0.0.0-test";
|
|
1655
1655
|
|
|
1656
1656
|
// src/gateway-provider.ts
|
|
1657
1657
|
var AI_GATEWAY_PROTOCOL_VERSION = "0.0.1";
|