@ai-sdk/open-responses 1.0.2 → 1.0.4
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 +14 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/docs/06-open-responses.mdx +2 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @ai-sdk/open-responses
|
|
2
2
|
|
|
3
|
+
## 1.0.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [08336f1]
|
|
8
|
+
- @ai-sdk/provider-utils@4.0.17
|
|
9
|
+
|
|
10
|
+
## 1.0.3
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [58bc42d]
|
|
15
|
+
- @ai-sdk/provider-utils@4.0.16
|
|
16
|
+
|
|
3
17
|
## 1.0.2
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -26,7 +26,7 @@ __export(src_exports, {
|
|
|
26
26
|
module.exports = __toCommonJS(src_exports);
|
|
27
27
|
|
|
28
28
|
// src/version.ts
|
|
29
|
-
var VERSION = true ? "1.0.
|
|
29
|
+
var VERSION = true ? "1.0.4" : "0.0.0-test";
|
|
30
30
|
|
|
31
31
|
// src/open-responses-provider.ts
|
|
32
32
|
var import_provider = require("@ai-sdk/provider");
|
package/dist/index.mjs
CHANGED
|
@@ -72,7 +72,8 @@ The Open Responses provider instance is a function that you can invoke to create
|
|
|
72
72
|
const model = openResponses('mistralai/ministral-3-14b-reasoning');
|
|
73
73
|
```
|
|
74
74
|
|
|
75
|
-
You can use Open Responses models with the `generateText
|
|
75
|
+
You can use Open Responses models with the `generateText` and `streamText` functions,
|
|
76
|
+
and they support structured data generation with [`Output`](/docs/reference/ai-sdk-core/output)
|
|
76
77
|
(see [AI SDK Core](/docs/ai-sdk-core)).
|
|
77
78
|
|
|
78
79
|
### Example
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-sdk/open-responses",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@ai-sdk/provider": "3.0.8",
|
|
33
|
-
"@ai-sdk/provider-utils": "4.0.
|
|
33
|
+
"@ai-sdk/provider-utils": "4.0.17"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/node": "20.17.24",
|