@raindrop-ai/ai-sdk 0.0.15 → 0.0.17
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/README.md +6 -6
- package/dist/{chunk-HV5PGIWQ.mjs → chunk-IPXCP2EO.mjs} +283 -241
- package/dist/index.d.mts +8 -54
- package/dist/index.d.ts +8 -54
- package/dist/index.js +283 -241
- package/dist/index.mjs +1 -1
- package/dist/index.node.js +283 -241
- package/dist/index.node.mjs +1 -1
- package/dist/index.workers.js +283 -241
- package/dist/index.workers.mjs +1 -1
- package/package.json +7 -6
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ Standalone Vercel AI SDK integration for Raindrop:
|
|
|
9
9
|
## Install
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
|
|
12
|
+
pnpm add @raindrop-ai/ai-sdk
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
## Usage
|
|
@@ -121,15 +121,15 @@ packages/ai-sdk/
|
|
|
121
121
|
|
|
122
122
|
```bash
|
|
123
123
|
# Run all version tests (requires OPENAI_API_KEY and RAINDROP_WRITE_KEY in .env)
|
|
124
|
-
|
|
124
|
+
pnpm test
|
|
125
125
|
|
|
126
126
|
# Run specific version
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
127
|
+
pnpm test:v4
|
|
128
|
+
pnpm test:v5
|
|
129
|
+
pnpm test:v6
|
|
130
130
|
|
|
131
131
|
# Quick smoke test (real LLM calls, single version)
|
|
132
|
-
|
|
132
|
+
pnpm smoke:min
|
|
133
133
|
```
|
|
134
134
|
|
|
135
135
|
### Test Coverage
|