@ai-sdk/fal 2.0.14 → 2.0.15
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/README.md +8 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -10,6 +10,14 @@ The fal provider is available in the `@ai-sdk/fal` module. You can install it wi
|
|
|
10
10
|
npm i @ai-sdk/fal
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
+
## Skill for Coding Agents
|
|
14
|
+
|
|
15
|
+
If you use coding agents such as Claude Code or Cursor, we highly recommend adding the AI SDK skill to your repository:
|
|
16
|
+
|
|
17
|
+
```shell
|
|
18
|
+
npx skills add vercel/ai
|
|
19
|
+
```
|
|
20
|
+
|
|
13
21
|
## Provider Instance
|
|
14
22
|
|
|
15
23
|
You can import the default provider instance `fal` from `@ai-sdk/fal`:
|
package/dist/index.js
CHANGED
|
@@ -764,7 +764,7 @@ var falSpeechResponseSchema = import_v45.z.object({
|
|
|
764
764
|
});
|
|
765
765
|
|
|
766
766
|
// src/version.ts
|
|
767
|
-
var VERSION = true ? "2.0.
|
|
767
|
+
var VERSION = true ? "2.0.15" : "0.0.0-test";
|
|
768
768
|
|
|
769
769
|
// src/fal-provider.ts
|
|
770
770
|
var defaultBaseURL = "https://fal.run";
|
package/dist/index.mjs
CHANGED