@aws-sdk/client-bedrock-agent-runtime 3.703.0 → 3.706.0
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 +8 -0
- package/dist-cjs/index.js +380 -68
- package/dist-es/BedrockAgentRuntime.js +2 -0
- package/dist-es/commands/GenerateQueryCommand.js +23 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +216 -54
- package/dist-es/protocols/Aws_restJson1.js +74 -3
- package/dist-types/BedrockAgentRuntime.d.ts +7 -0
- package/dist-types/BedrockAgentRuntimeClient.d.ts +3 -2
- package/dist-types/commands/GenerateQueryCommand.d.ts +115 -0
- package/dist-types/commands/InvokeAgentCommand.d.ts +400 -24
- package/dist-types/commands/InvokeInlineAgentCommand.d.ts +380 -23
- package/dist-types/commands/RetrieveAndGenerateCommand.d.ts +17 -2
- package/dist-types/commands/RetrieveAndGenerateStreamCommand.d.ts +17 -2
- package/dist-types/commands/RetrieveCommand.d.ts +17 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1189 -489
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/BedrockAgentRuntime.d.ts +17 -0
- package/dist-types/ts3.4/BedrockAgentRuntimeClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/GenerateQueryCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +418 -123
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +1 -1
|
@@ -10,6 +10,10 @@ import {
|
|
|
10
10
|
DeleteAgentMemoryCommandInput,
|
|
11
11
|
DeleteAgentMemoryCommandOutput,
|
|
12
12
|
} from "../commands/DeleteAgentMemoryCommand";
|
|
13
|
+
import {
|
|
14
|
+
GenerateQueryCommandInput,
|
|
15
|
+
GenerateQueryCommandOutput,
|
|
16
|
+
} from "../commands/GenerateQueryCommand";
|
|
13
17
|
import {
|
|
14
18
|
GetAgentMemoryCommandInput,
|
|
15
19
|
GetAgentMemoryCommandOutput,
|
|
@@ -50,6 +54,10 @@ export declare const se_DeleteAgentMemoryCommand: (
|
|
|
50
54
|
input: DeleteAgentMemoryCommandInput,
|
|
51
55
|
context: __SerdeContext
|
|
52
56
|
) => Promise<__HttpRequest>;
|
|
57
|
+
export declare const se_GenerateQueryCommand: (
|
|
58
|
+
input: GenerateQueryCommandInput,
|
|
59
|
+
context: __SerdeContext
|
|
60
|
+
) => Promise<__HttpRequest>;
|
|
53
61
|
export declare const se_GetAgentMemoryCommand: (
|
|
54
62
|
input: GetAgentMemoryCommandInput,
|
|
55
63
|
context: __SerdeContext
|
|
@@ -90,6 +98,10 @@ export declare const de_DeleteAgentMemoryCommand: (
|
|
|
90
98
|
output: __HttpResponse,
|
|
91
99
|
context: __SerdeContext
|
|
92
100
|
) => Promise<DeleteAgentMemoryCommandOutput>;
|
|
101
|
+
export declare const de_GenerateQueryCommand: (
|
|
102
|
+
output: __HttpResponse,
|
|
103
|
+
context: __SerdeContext
|
|
104
|
+
) => Promise<GenerateQueryCommandOutput>;
|
|
93
105
|
export declare const de_GetAgentMemoryCommand: (
|
|
94
106
|
output: __HttpResponse,
|
|
95
107
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bedrock-agent-runtime",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bedrock Agent Runtime Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.706.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-agent-runtime",
|