workers-ai-provider 0.0.1 → 0.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -26,7 +26,7 @@ Then in your Worker, import the factory function and create a new AI provider:
26
26
 
27
27
  ```ts
28
28
  // index.ts
29
- import { createWorkersAI } from "workers-vercel-ai-sdk";
29
+ import { createWorkersAI } from "workers-ai-provider";
30
30
  import * as ai from "ai";
31
31
 
32
32
  export default {
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": "0.0.1",
5
+ "version": "0.0.2",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {