workers-ai-provider 2.0.1 → 2.0.2

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
@@ -2,7 +2,7 @@
2
2
  "name": "workers-ai-provider",
3
3
  "description": "Workers AI Provider for the vercel AI SDK",
4
4
  "type": "module",
5
- "version": "2.0.1",
5
+ "version": "2.0.2",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "repository": {
@@ -80,7 +80,6 @@ export class WorkersAIEmbeddingModel implements EmbeddingModelV2<string> {
80
80
  {
81
81
  gateway: this.config.gateway ?? gateway,
82
82
  ...passthroughOptions,
83
- tags: [],
84
83
  },
85
84
  );
86
85
 
@@ -159,7 +159,6 @@ export class WorkersAIChatLanguageModel implements LanguageModelV2 {
159
159
  {
160
160
  gateway: this.config.gateway ?? gateway,
161
161
  ...passthroughOptions,
162
- tags: [],
163
162
  },
164
163
  );
165
164
 
@@ -307,7 +306,6 @@ export class WorkersAIChatLanguageModel implements LanguageModelV2 {
307
306
  {
308
307
  gateway: this.config.gateway ?? gateway,
309
308
  ...passthroughOptions,
310
- tags: [],
311
309
  },
312
310
  );
313
311