workers-ai-provider 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
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": {