agent0-js 0.0.14 → 0.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/dist/types.d.ts +3 -0
- package/package.json +2 -1
- package/src/types.ts +3 -0
package/dist/types.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BedrockProviderOptions } from "@ai-sdk/amazon-bedrock";
|
|
1
2
|
import type { GoogleGenerativeAIProviderOptions } from "@ai-sdk/google";
|
|
2
3
|
import type { OpenAIResponsesProviderOptions } from "@ai-sdk/openai";
|
|
3
4
|
import type { XaiProviderOptions } from "@ai-sdk/xai";
|
|
@@ -19,6 +20,8 @@ export interface ProviderOptions {
|
|
|
19
20
|
xai?: XaiProviderOptions;
|
|
20
21
|
/** Google/Vertex thinking configuration */
|
|
21
22
|
google?: GoogleGenerativeAIProviderOptions;
|
|
23
|
+
/** Amazon Bedrock thinking configuration */
|
|
24
|
+
bedrock?: BedrockProviderOptions;
|
|
22
25
|
}
|
|
23
26
|
/**
|
|
24
27
|
* Model configuration overrides for runtime customization.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent0-js",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"description": "TypeScript SDK for Agent0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"typescript": "^5.0.0"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
+
"@ai-sdk/amazon-bedrock": "^3.0.72",
|
|
20
21
|
"@ai-sdk/google": "3.0.0",
|
|
21
22
|
"@ai-sdk/openai": "3.0.0",
|
|
22
23
|
"@ai-sdk/xai": "3.0.0",
|
package/src/types.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BedrockProviderOptions } from "@ai-sdk/amazon-bedrock";
|
|
1
2
|
import type { GoogleGenerativeAIProviderOptions } from "@ai-sdk/google";
|
|
2
3
|
import type { OpenAIResponsesProviderOptions } from "@ai-sdk/openai";
|
|
3
4
|
import type { XaiProviderOptions } from "@ai-sdk/xai";
|
|
@@ -21,6 +22,8 @@ export interface ProviderOptions {
|
|
|
21
22
|
xai?: XaiProviderOptions;
|
|
22
23
|
/** Google/Vertex thinking configuration */
|
|
23
24
|
google?: GoogleGenerativeAIProviderOptions;
|
|
25
|
+
/** Amazon Bedrock thinking configuration */
|
|
26
|
+
bedrock?: BedrockProviderOptions;
|
|
24
27
|
}
|
|
25
28
|
|
|
26
29
|
/**
|