@aws-sdk/client-bedrock-agentcore 3.1038.0 → 3.1040.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 +105 -7
- package/dist-cjs/index.js +275 -0
- package/dist-cjs/schemas/schemas_0.js +851 -99
- package/dist-es/BedrockAgentCore.js +34 -0
- package/dist-es/commands/CreateABTestCommand.js +16 -0
- package/dist-es/commands/DeleteABTestCommand.js +16 -0
- package/dist-es/commands/DeleteBatchEvaluationCommand.js +16 -0
- package/dist-es/commands/DeleteRecommendationCommand.js +16 -0
- package/dist-es/commands/GetABTestCommand.js +16 -0
- package/dist-es/commands/GetBatchEvaluationCommand.js +16 -0
- package/dist-es/commands/GetRecommendationCommand.js +16 -0
- package/dist-es/commands/ListABTestsCommand.js +16 -0
- package/dist-es/commands/ListBatchEvaluationsCommand.js +16 -0
- package/dist-es/commands/ListRecommendationsCommand.js +16 -0
- package/dist-es/commands/StartBatchEvaluationCommand.js +16 -0
- package/dist-es/commands/StartRecommendationCommand.js +16 -0
- package/dist-es/commands/StopBatchEvaluationCommand.js +16 -0
- package/dist-es/commands/UpdateABTestCommand.js +16 -0
- package/dist-es/commands/index.js +14 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +60 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/pagination/ListABTestsPaginator.js +4 -0
- package/dist-es/pagination/ListBatchEvaluationsPaginator.js +4 -0
- package/dist-es/pagination/ListRecommendationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +843 -93
- package/dist-types/BedrockAgentCore.d.ts +122 -0
- package/dist-types/BedrockAgentCoreClient.d.ts +16 -2
- package/dist-types/commands/BatchCreateMemoryRecordsCommand.d.ts +10 -0
- package/dist-types/commands/BatchUpdateMemoryRecordsCommand.d.ts +10 -0
- package/dist-types/commands/CreateABTestCommand.d.ts +134 -0
- package/dist-types/commands/DeleteABTestCommand.d.ts +97 -0
- package/dist-types/commands/DeleteBatchEvaluationCommand.d.ts +97 -0
- package/dist-types/commands/DeleteRecommendationCommand.d.ts +93 -0
- package/dist-types/commands/GetABTestCommand.d.ts +165 -0
- package/dist-types/commands/GetBatchEvaluationCommand.d.ts +148 -0
- package/dist-types/commands/GetMemoryRecordCommand.d.ts +7 -2
- package/dist-types/commands/GetRecommendationCommand.d.ts +220 -0
- package/dist-types/commands/GetResourceOauth2TokenCommand.d.ts +7 -1
- package/dist-types/commands/ListABTestsCommand.d.ts +103 -0
- package/dist-types/commands/ListBatchEvaluationsCommand.d.ts +126 -0
- package/dist-types/commands/ListMemoryRecordsCommand.d.ts +25 -2
- package/dist-types/commands/ListRecommendationsCommand.d.ts +100 -0
- package/dist-types/commands/RetrieveMemoryRecordsCommand.d.ts +16 -6
- package/dist-types/commands/SearchRegistryRecordsCommand.d.ts +2 -1
- package/dist-types/commands/StartBatchEvaluationCommand.d.ts +172 -0
- package/dist-types/commands/StartRecommendationCommand.d.ts +300 -0
- package/dist-types/commands/StopBatchEvaluationCommand.d.ts +98 -0
- package/dist-types/commands/UpdateABTestCommand.d.ts +136 -0
- package/dist-types/commands/index.d.ts +14 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +116 -0
- package/dist-types/models/models_0.d.ts +2595 -386
- package/dist-types/models/models_1.d.ts +147 -0
- package/dist-types/pagination/ListABTestsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListBatchEvaluationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRecommendationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +99 -0
- package/dist-types/ts3.4/BedrockAgentCore.d.ts +262 -0
- package/dist-types/ts3.4/BedrockAgentCoreClient.d.ts +84 -0
- package/dist-types/ts3.4/commands/CreateABTestCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteABTestCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteBatchEvaluationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteRecommendationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetABTestCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetBatchEvaluationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetRecommendationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListABTestsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListBatchEvaluationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SearchRegistryRecordsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/StartBatchEvaluationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartRecommendationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StopBatchEvaluationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateABTestCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +14 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +73 -0
- package/dist-types/ts3.4/models/models_0.d.ts +801 -43
- package/dist-types/ts3.4/models/models_1.d.ts +40 -0
- package/dist-types/ts3.4/pagination/ListABTestsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListBatchEvaluationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRecommendationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +99 -0
- package/package.json +7 -7
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
import type { DescriptorType, RegistryRecordStatus } from "./enums";
|
|
2
|
+
import type { A2aDescriptor, AgentSkillsDescriptor, CustomDescriptor } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* <p> The MCP server definition with a schema version and inline content. The <code>schemaVersion</code> identifies the version of the MCP server configuration schema.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface ServerDefinition {
|
|
8
|
+
/**
|
|
9
|
+
* <p> The schema version of the MCP server configuration. The schema version identifies the format of the server definition content.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
schemaVersion?: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p> The inline content of the server definition.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
inlineContent?: string | undefined;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* <p> The MCP tools definition with a protocol version and inline content. The <code>protocolVersion</code> identifies the MCP protocol version that the tools conform to. This differs from <code>schemaVersion</code> in the server definition, which identifies the server configuration schema format.</p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
export interface ToolsDefinition {
|
|
24
|
+
/**
|
|
25
|
+
* <p> The MCP protocol version that the tools conform to. This differs from the <code>schemaVersion</code> field in the server definition, which identifies the server configuration schema format.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
protocolVersion?: string | undefined;
|
|
29
|
+
/**
|
|
30
|
+
* <p> The inline content of the tools definition.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
inlineContent?: string | undefined;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* <p> The MCP (Model Context Protocol) descriptor configuration for a registry record. Contains the server definition and tools definition.</p>
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export interface McpDescriptor {
|
|
40
|
+
/**
|
|
41
|
+
* <p> The MCP server definition that describes the server configuration.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
server: ServerDefinition | undefined;
|
|
45
|
+
/**
|
|
46
|
+
* <p> The MCP tools definition that describes the available tools.</p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
tools: ToolsDefinition | undefined;
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* <p> Contains the descriptor configuration for a registry record. Only the field that matches the record's <code>descriptorType</code> is populated.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
export interface Descriptors {
|
|
56
|
+
/**
|
|
57
|
+
* <p> The MCP (Model Context Protocol) descriptor configuration. Populated when the record's <code>descriptorType</code> is <code>MCP</code>.</p>
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
mcp?: McpDescriptor | undefined;
|
|
61
|
+
/**
|
|
62
|
+
* <p> The A2A (Agent-to-Agent) descriptor configuration. Populated when the record's <code>descriptorType</code> is <code>A2A</code>.</p>
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
a2a?: A2aDescriptor | undefined;
|
|
66
|
+
/**
|
|
67
|
+
* <p> The custom descriptor configuration. Populated when the record's <code>descriptorType</code> is <code>CUSTOM</code>.</p>
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
custom?: CustomDescriptor | undefined;
|
|
71
|
+
/**
|
|
72
|
+
* <p> The agent skills descriptor configuration. Populated when the record's <code>descriptorType</code> is <code>AGENT_SKILLS</code>.</p>
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
agentSkills?: AgentSkillsDescriptor | undefined;
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* <p> Summary information about a registry record.</p>
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
export interface RegistryRecordSummary {
|
|
82
|
+
/**
|
|
83
|
+
* <p> The Amazon Resource Name (ARN) of the registry that this record belongs to.</p>
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
registryArn: string | undefined;
|
|
87
|
+
/**
|
|
88
|
+
* <p> The Amazon Resource Name (ARN) of the registry record.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
recordArn: string | undefined;
|
|
92
|
+
/**
|
|
93
|
+
* <p> The unique identifier of the registry record.</p>
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
recordId: string | undefined;
|
|
97
|
+
/**
|
|
98
|
+
* <p> The name of the registry record.</p>
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
name: string | undefined;
|
|
102
|
+
/**
|
|
103
|
+
* <p> A description of the registry record.</p>
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
description?: string | undefined;
|
|
107
|
+
/**
|
|
108
|
+
* <p> The type of descriptor associated with this registry record.</p>
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
descriptorType: DescriptorType | undefined;
|
|
112
|
+
/**
|
|
113
|
+
* <p> The descriptor configurations for this registry record.</p>
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
descriptors: Descriptors | undefined;
|
|
117
|
+
/**
|
|
118
|
+
* <p> The version of the registry record.</p>
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
version: string | undefined;
|
|
122
|
+
/**
|
|
123
|
+
* <p> The current status of the registry record.</p>
|
|
124
|
+
* @public
|
|
125
|
+
*/
|
|
126
|
+
status: RegistryRecordStatus | undefined;
|
|
127
|
+
/**
|
|
128
|
+
* <p> The date and time when the registry record was created.</p>
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
131
|
+
createdAt: Date | undefined;
|
|
132
|
+
/**
|
|
133
|
+
* <p> The date and time when the registry record was last updated.</p>
|
|
134
|
+
* @public
|
|
135
|
+
*/
|
|
136
|
+
updatedAt: Date | undefined;
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* @public
|
|
140
|
+
*/
|
|
141
|
+
export interface SearchRegistryRecordsResponse {
|
|
142
|
+
/**
|
|
143
|
+
* <p> The list of registry records that match the search query, ordered by relevance.</p>
|
|
144
|
+
* @public
|
|
145
|
+
*/
|
|
146
|
+
registryRecords: RegistryRecordSummary[] | undefined;
|
|
147
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListABTestsCommandInput, ListABTestsCommandOutput } from "../commands/ListABTestsCommand";
|
|
3
|
+
import type { BedrockAgentCorePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListABTests: (config: BedrockAgentCorePaginationConfiguration, input: ListABTestsCommandInput, ...rest: any[]) => Paginator<ListABTestsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListBatchEvaluationsCommandInput, ListBatchEvaluationsCommandOutput } from "../commands/ListBatchEvaluationsCommand";
|
|
3
|
+
import type { BedrockAgentCorePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListBatchEvaluations: (config: BedrockAgentCorePaginationConfiguration, input: ListBatchEvaluationsCommandInput, ...rest: any[]) => Paginator<ListBatchEvaluationsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListRecommendationsCommandInput, ListRecommendationsCommandOutput } from "../commands/ListRecommendationsCommand";
|
|
3
|
+
import type { BedrockAgentCorePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListRecommendations: (config: BedrockAgentCorePaginationConfiguration, input: ListRecommendationsCommandInput, ...rest: any[]) => Paginator<ListRecommendationsCommandOutput>;
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListABTestsPaginator";
|
|
2
3
|
export * from "./ListActorsPaginator";
|
|
4
|
+
export * from "./ListBatchEvaluationsPaginator";
|
|
3
5
|
export * from "./ListEventsPaginator";
|
|
4
6
|
export * from "./ListMemoryExtractionJobsPaginator";
|
|
5
7
|
export * from "./ListMemoryRecordsPaginator";
|
|
8
|
+
export * from "./ListRecommendationsPaginator";
|
|
6
9
|
export * from "./ListSessionsPaginator";
|
|
7
10
|
export * from "./RetrieveMemoryRecordsPaginator";
|
|
@@ -22,6 +22,8 @@ export declare var ValidationException$: StaticErrorSchema;
|
|
|
22
22
|
*/
|
|
23
23
|
export declare const errorTypeRegistries: TypeRegistry[];
|
|
24
24
|
export declare var A2aDescriptor$: StaticStructureSchema;
|
|
25
|
+
export declare var ABTestResults$: StaticStructureSchema;
|
|
26
|
+
export declare var ABTestSummary$: StaticStructureSchema;
|
|
25
27
|
export declare var ActorSummary$: StaticStructureSchema;
|
|
26
28
|
export declare var AgentCardDefinition$: StaticStructureSchema;
|
|
27
29
|
export declare var AgentSkillsDescriptor$: StaticStructureSchema;
|
|
@@ -32,6 +34,7 @@ export declare var BatchCreateMemoryRecordsInput$: StaticStructureSchema;
|
|
|
32
34
|
export declare var BatchCreateMemoryRecordsOutput$: StaticStructureSchema;
|
|
33
35
|
export declare var BatchDeleteMemoryRecordsInput$: StaticStructureSchema;
|
|
34
36
|
export declare var BatchDeleteMemoryRecordsOutput$: StaticStructureSchema;
|
|
37
|
+
export declare var BatchEvaluationSummary$: StaticStructureSchema;
|
|
35
38
|
export declare var BatchUpdateMemoryRecordsInput$: StaticStructureSchema;
|
|
36
39
|
export declare var BatchUpdateMemoryRecordsOutput$: StaticStructureSchema;
|
|
37
40
|
export declare var Branch$: StaticStructureSchema;
|
|
@@ -42,28 +45,51 @@ export declare var BrowserProfileConfiguration$: StaticStructureSchema;
|
|
|
42
45
|
export declare var BrowserSessionStream$: StaticStructureSchema;
|
|
43
46
|
export declare var BrowserSessionSummary$: StaticStructureSchema;
|
|
44
47
|
export declare var Certificate$: StaticStructureSchema;
|
|
48
|
+
export declare var CloudWatchFilterConfig$: StaticStructureSchema;
|
|
49
|
+
export declare var CloudWatchLogsFilter$: StaticStructureSchema;
|
|
50
|
+
export declare var CloudWatchLogsRule$: StaticStructureSchema;
|
|
51
|
+
export declare var CloudWatchLogsSource$: StaticStructureSchema;
|
|
52
|
+
export declare var CloudWatchLogsTraceConfig$: StaticStructureSchema;
|
|
53
|
+
export declare var CloudWatchOutputConfig$: StaticStructureSchema;
|
|
45
54
|
export declare var CodeInterpreterResult$: StaticStructureSchema;
|
|
46
55
|
export declare var CodeInterpreterSessionSummary$: StaticStructureSchema;
|
|
47
56
|
export declare var CompleteResourceTokenAuthRequest$: StaticStructureSchema;
|
|
48
57
|
export declare var CompleteResourceTokenAuthResponse$: StaticStructureSchema;
|
|
58
|
+
export declare var ConfidenceInterval$: StaticStructureSchema;
|
|
59
|
+
export declare var ConfigurationBundleRef$: StaticStructureSchema;
|
|
60
|
+
export declare var ConfigurationBundleToolEntry$: StaticStructureSchema;
|
|
49
61
|
export declare var ContentBlock$: StaticStructureSchema;
|
|
50
62
|
export declare var ContentDeltaEvent$: StaticStructureSchema;
|
|
51
63
|
export declare var ContentStartEvent$: StaticStructureSchema;
|
|
52
64
|
export declare var ContentStopEvent$: StaticStructureSchema;
|
|
65
|
+
export declare var ControlStats$: StaticStructureSchema;
|
|
53
66
|
export declare var Conversational$: StaticStructureSchema;
|
|
67
|
+
export declare var CreateABTestRequest$: StaticStructureSchema;
|
|
68
|
+
export declare var CreateABTestResponse$: StaticStructureSchema;
|
|
54
69
|
export declare var CreateEventInput$: StaticStructureSchema;
|
|
55
70
|
export declare var CreateEventOutput$: StaticStructureSchema;
|
|
56
71
|
export declare var CustomDescriptor$: StaticStructureSchema;
|
|
72
|
+
export declare var DeleteABTestRequest$: StaticStructureSchema;
|
|
73
|
+
export declare var DeleteABTestResponse$: StaticStructureSchema;
|
|
74
|
+
export declare var DeleteBatchEvaluationRequest$: StaticStructureSchema;
|
|
75
|
+
export declare var DeleteBatchEvaluationResponse$: StaticStructureSchema;
|
|
57
76
|
export declare var DeleteEventInput$: StaticStructureSchema;
|
|
58
77
|
export declare var DeleteEventOutput$: StaticStructureSchema;
|
|
59
78
|
export declare var DeleteMemoryRecordInput$: StaticStructureSchema;
|
|
60
79
|
export declare var DeleteMemoryRecordOutput$: StaticStructureSchema;
|
|
80
|
+
export declare var DeleteRecommendationRequest$: StaticStructureSchema;
|
|
81
|
+
export declare var DeleteRecommendationResponse$: StaticStructureSchema;
|
|
61
82
|
export declare var Descriptors$: StaticStructureSchema;
|
|
62
83
|
export declare var EvaluateRequest$: StaticStructureSchema;
|
|
63
84
|
export declare var EvaluateResponse$: StaticStructureSchema;
|
|
64
85
|
export declare var EvaluationExpectedTrajectory$: StaticStructureSchema;
|
|
86
|
+
export declare var EvaluationJobResults$: StaticStructureSchema;
|
|
65
87
|
export declare var EvaluationReferenceInput$: StaticStructureSchema;
|
|
66
88
|
export declare var EvaluationResultContent$: StaticStructureSchema;
|
|
89
|
+
export declare var Evaluator$: StaticStructureSchema;
|
|
90
|
+
export declare var EvaluatorMetric$: StaticStructureSchema;
|
|
91
|
+
export declare var EvaluatorStatistics$: StaticStructureSchema;
|
|
92
|
+
export declare var EvaluatorSummary$: StaticStructureSchema;
|
|
67
93
|
export declare var Event$: StaticStructureSchema;
|
|
68
94
|
export declare var EventMetadataFilterExpression$: StaticStructureSchema;
|
|
69
95
|
export declare var ExternalProxy$: StaticStructureSchema;
|
|
@@ -71,8 +97,13 @@ export declare var ExtractionJob$: StaticStructureSchema;
|
|
|
71
97
|
export declare var ExtractionJobFilterInput$: StaticStructureSchema;
|
|
72
98
|
export declare var ExtractionJobMetadata$: StaticStructureSchema;
|
|
73
99
|
export declare var FilterInput$: StaticStructureSchema;
|
|
100
|
+
export declare var GatewayFilter$: StaticStructureSchema;
|
|
101
|
+
export declare var GetABTestRequest$: StaticStructureSchema;
|
|
102
|
+
export declare var GetABTestResponse$: StaticStructureSchema;
|
|
74
103
|
export declare var GetAgentCardRequest$: StaticStructureSchema;
|
|
75
104
|
export declare var GetAgentCardResponse$: StaticStructureSchema;
|
|
105
|
+
export declare var GetBatchEvaluationRequest$: StaticStructureSchema;
|
|
106
|
+
export declare var GetBatchEvaluationResponse$: StaticStructureSchema;
|
|
76
107
|
export declare var GetBrowserSessionRequest$: StaticStructureSchema;
|
|
77
108
|
export declare var GetBrowserSessionResponse$: StaticStructureSchema;
|
|
78
109
|
export declare var GetCodeInterpreterSessionRequest$: StaticStructureSchema;
|
|
@@ -81,6 +112,8 @@ export declare var GetEventInput$: StaticStructureSchema;
|
|
|
81
112
|
export declare var GetEventOutput$: StaticStructureSchema;
|
|
82
113
|
export declare var GetMemoryRecordInput$: StaticStructureSchema;
|
|
83
114
|
export declare var GetMemoryRecordOutput$: StaticStructureSchema;
|
|
115
|
+
export declare var GetRecommendationRequest$: StaticStructureSchema;
|
|
116
|
+
export declare var GetRecommendationResponse$: StaticStructureSchema;
|
|
84
117
|
export declare var GetResourceApiKeyRequest$: StaticStructureSchema;
|
|
85
118
|
export declare var GetResourceApiKeyResponse$: StaticStructureSchema;
|
|
86
119
|
export declare var GetResourceOauth2TokenRequest$: StaticStructureSchema;
|
|
@@ -91,6 +124,7 @@ export declare var GetWorkloadAccessTokenForUserIdRequest$: StaticStructureSchem
|
|
|
91
124
|
export declare var GetWorkloadAccessTokenForUserIdResponse$: StaticStructureSchema;
|
|
92
125
|
export declare var GetWorkloadAccessTokenRequest$: StaticStructureSchema;
|
|
93
126
|
export declare var GetWorkloadAccessTokenResponse$: StaticStructureSchema;
|
|
127
|
+
export declare var GroundTruthTurn$: StaticStructureSchema;
|
|
94
128
|
export declare var HarnessAgentCoreBrowserConfig$: StaticStructureSchema;
|
|
95
129
|
export declare var HarnessAgentCoreCodeInterpreterConfig$: StaticStructureSchema;
|
|
96
130
|
export declare var HarnessAgentCoreGatewayConfig$: StaticStructureSchema;
|
|
@@ -115,6 +149,7 @@ export declare var HarnessToolResultBlockStart$: StaticStructureSchema;
|
|
|
115
149
|
export declare var HarnessToolUseBlock$: StaticStructureSchema;
|
|
116
150
|
export declare var HarnessToolUseBlockDelta$: StaticStructureSchema;
|
|
117
151
|
export declare var HarnessToolUseBlockStart$: StaticStructureSchema;
|
|
152
|
+
export declare var InlineGroundTruth$: StaticStructureSchema;
|
|
118
153
|
export declare var InputContentBlock$: StaticStructureSchema;
|
|
119
154
|
export declare var InvokeAgentRuntimeCommandRequest$: StaticStructureSchema;
|
|
120
155
|
export declare var InvokeAgentRuntimeCommandRequestBody$: StaticStructureSchema;
|
|
@@ -133,8 +168,12 @@ export declare var KeyShortcutArguments$: StaticStructureSchema;
|
|
|
133
168
|
export declare var KeyShortcutResult$: StaticStructureSchema;
|
|
134
169
|
export declare var KeyTypeArguments$: StaticStructureSchema;
|
|
135
170
|
export declare var KeyTypeResult$: StaticStructureSchema;
|
|
171
|
+
export declare var ListABTestsRequest$: StaticStructureSchema;
|
|
172
|
+
export declare var ListABTestsResponse$: StaticStructureSchema;
|
|
136
173
|
export declare var ListActorsInput$: StaticStructureSchema;
|
|
137
174
|
export declare var ListActorsOutput$: StaticStructureSchema;
|
|
175
|
+
export declare var ListBatchEvaluationsRequest$: StaticStructureSchema;
|
|
176
|
+
export declare var ListBatchEvaluationsResponse$: StaticStructureSchema;
|
|
138
177
|
export declare var ListBrowserSessionsRequest$: StaticStructureSchema;
|
|
139
178
|
export declare var ListBrowserSessionsResponse$: StaticStructureSchema;
|
|
140
179
|
export declare var ListCodeInterpreterSessionsRequest$: StaticStructureSchema;
|
|
@@ -145,6 +184,8 @@ export declare var ListMemoryExtractionJobsInput$: StaticStructureSchema;
|
|
|
145
184
|
export declare var ListMemoryExtractionJobsOutput$: StaticStructureSchema;
|
|
146
185
|
export declare var ListMemoryRecordsInput$: StaticStructureSchema;
|
|
147
186
|
export declare var ListMemoryRecordsOutput$: StaticStructureSchema;
|
|
187
|
+
export declare var ListRecommendationsRequest$: StaticStructureSchema;
|
|
188
|
+
export declare var ListRecommendationsResponse$: StaticStructureSchema;
|
|
148
189
|
export declare var ListSessionsInput$: StaticStructureSchema;
|
|
149
190
|
export declare var ListSessionsOutput$: StaticStructureSchema;
|
|
150
191
|
export declare var LiveViewStream$: StaticStructureSchema;
|
|
@@ -166,8 +207,13 @@ export declare var MouseMoveResult$: StaticStructureSchema;
|
|
|
166
207
|
export declare var MouseScrollArguments$: StaticStructureSchema;
|
|
167
208
|
export declare var MouseScrollResult$: StaticStructureSchema;
|
|
168
209
|
export declare var OAuthCredentialProvider$: StaticStructureSchema;
|
|
210
|
+
export declare var PerVariantOnlineEvaluationConfig$: StaticStructureSchema;
|
|
169
211
|
export declare var ProxyBypass$: StaticStructureSchema;
|
|
170
212
|
export declare var ProxyConfiguration$: StaticStructureSchema;
|
|
213
|
+
export declare var RecommendationEvaluationConfig$: StaticStructureSchema;
|
|
214
|
+
export declare var RecommendationEvaluatorReference$: StaticStructureSchema;
|
|
215
|
+
export declare var RecommendationResultConfigurationBundle$: StaticStructureSchema;
|
|
216
|
+
export declare var RecommendationSummary$: StaticStructureSchema;
|
|
171
217
|
export declare var RegistryRecordSummary$: StaticStructureSchema;
|
|
172
218
|
export declare var ResourceContent$: StaticStructureSchema;
|
|
173
219
|
export declare var ResponseChunk$: StaticStructureSchema;
|
|
@@ -184,40 +230,70 @@ export declare var SearchRegistryRecordsResponse$: StaticStructureSchema;
|
|
|
184
230
|
export declare var SecretsManagerLocation$: StaticStructureSchema;
|
|
185
231
|
export declare var ServerDefinition$: StaticStructureSchema;
|
|
186
232
|
export declare var SessionFilter$: StaticStructureSchema;
|
|
233
|
+
export declare var SessionFilterConfig$: StaticStructureSchema;
|
|
234
|
+
export declare var SessionMetadataShape$: StaticStructureSchema;
|
|
187
235
|
export declare var SessionSummary$: StaticStructureSchema;
|
|
188
236
|
export declare var SkillDefinition$: StaticStructureSchema;
|
|
189
237
|
export declare var SkillMdDefinition$: StaticStructureSchema;
|
|
190
238
|
export declare var SpanContext$: StaticStructureSchema;
|
|
239
|
+
export declare var StartBatchEvaluationRequest$: StaticStructureSchema;
|
|
240
|
+
export declare var StartBatchEvaluationResponse$: StaticStructureSchema;
|
|
191
241
|
export declare var StartBrowserSessionRequest$: StaticStructureSchema;
|
|
192
242
|
export declare var StartBrowserSessionResponse$: StaticStructureSchema;
|
|
193
243
|
export declare var StartCodeInterpreterSessionRequest$: StaticStructureSchema;
|
|
194
244
|
export declare var StartCodeInterpreterSessionResponse$: StaticStructureSchema;
|
|
195
245
|
export declare var StartMemoryExtractionJobInput$: StaticStructureSchema;
|
|
196
246
|
export declare var StartMemoryExtractionJobOutput$: StaticStructureSchema;
|
|
247
|
+
export declare var StartRecommendationRequest$: StaticStructureSchema;
|
|
248
|
+
export declare var StartRecommendationResponse$: StaticStructureSchema;
|
|
249
|
+
export declare var StopBatchEvaluationRequest$: StaticStructureSchema;
|
|
250
|
+
export declare var StopBatchEvaluationResponse$: StaticStructureSchema;
|
|
197
251
|
export declare var StopBrowserSessionRequest$: StaticStructureSchema;
|
|
198
252
|
export declare var StopBrowserSessionResponse$: StaticStructureSchema;
|
|
199
253
|
export declare var StopCodeInterpreterSessionRequest$: StaticStructureSchema;
|
|
200
254
|
export declare var StopCodeInterpreterSessionResponse$: StaticStructureSchema;
|
|
201
255
|
export declare var StopRuntimeSessionRequest$: StaticStructureSchema;
|
|
202
256
|
export declare var StopRuntimeSessionResponse$: StaticStructureSchema;
|
|
257
|
+
export declare var SystemPromptConfigurationBundle$: StaticStructureSchema;
|
|
258
|
+
export declare var SystemPromptRecommendationConfig$: StaticStructureSchema;
|
|
259
|
+
export declare var SystemPromptRecommendationResult$: StaticStructureSchema;
|
|
260
|
+
export declare var TargetRef$: StaticStructureSchema;
|
|
203
261
|
export declare var TokenUsage$: StaticStructureSchema;
|
|
204
262
|
export declare var ToolArguments$: StaticStructureSchema;
|
|
263
|
+
export declare var ToolDescriptionConfigurationBundle$: StaticStructureSchema;
|
|
264
|
+
export declare var ToolDescriptionInput$: StaticStructureSchema;
|
|
265
|
+
export declare var ToolDescriptionOutput$: StaticStructureSchema;
|
|
266
|
+
export declare var ToolDescriptionRecommendationConfig$: StaticStructureSchema;
|
|
267
|
+
export declare var ToolDescriptionRecommendationResult$: StaticStructureSchema;
|
|
268
|
+
export declare var ToolDescriptionTextInput$: StaticStructureSchema;
|
|
205
269
|
export declare var ToolResultStructuredContent$: StaticStructureSchema;
|
|
206
270
|
export declare var ToolsDefinition$: StaticStructureSchema;
|
|
271
|
+
export declare var UpdateABTestRequest$: StaticStructureSchema;
|
|
272
|
+
export declare var UpdateABTestResponse$: StaticStructureSchema;
|
|
207
273
|
export declare var UpdateBrowserStreamRequest$: StaticStructureSchema;
|
|
208
274
|
export declare var UpdateBrowserStreamResponse$: StaticStructureSchema;
|
|
209
275
|
export declare var ValidationExceptionField$: StaticStructureSchema;
|
|
276
|
+
export declare var Variant$: StaticStructureSchema;
|
|
277
|
+
export declare var VariantConfiguration$: StaticStructureSchema;
|
|
278
|
+
export declare var VariantResult$: StaticStructureSchema;
|
|
210
279
|
export declare var ViewPort$: StaticStructureSchema;
|
|
280
|
+
export declare var ABTestEvaluationConfig$: StaticUnionSchema;
|
|
281
|
+
export declare var AgentTracesConfig$: StaticUnionSchema;
|
|
211
282
|
export declare var BrowserAction$: StaticUnionSchema;
|
|
212
283
|
export declare var BrowserActionResult$: StaticUnionSchema;
|
|
213
284
|
export declare var CertificateLocation$: StaticUnionSchema;
|
|
214
285
|
export declare var CodeInterpreterStreamOutput$: StaticUnionSchema;
|
|
215
286
|
export declare var Content$: StaticUnionSchema;
|
|
216
287
|
export declare var Context$: StaticUnionSchema;
|
|
288
|
+
export declare var DataSourceConfig$: StaticUnionSchema;
|
|
217
289
|
export declare var EvaluationContent$: StaticUnionSchema;
|
|
218
290
|
export declare var EvaluationInput$: StaticUnionSchema;
|
|
291
|
+
export declare var EvaluationMetadata$: StaticUnionSchema;
|
|
219
292
|
export declare var EvaluationTarget$: StaticUnionSchema;
|
|
220
293
|
export declare var ExtractionJobMessages$: StaticUnionSchema;
|
|
294
|
+
export declare var FilterValue$: StaticUnionSchema;
|
|
295
|
+
export declare var GroundTruthSource$: StaticUnionSchema;
|
|
296
|
+
export declare var GroundTruthTurnInput$: StaticUnionSchema;
|
|
221
297
|
export declare var HarnessContentBlock$: StaticUnionSchema;
|
|
222
298
|
export declare var HarnessContentBlockDelta$: StaticUnionSchema;
|
|
223
299
|
export declare var HarnessContentBlockStart$: StaticUnionSchema;
|
|
@@ -234,27 +310,43 @@ export declare var InvokeAgentRuntimeCommandStreamOutput$: StaticUnionSchema;
|
|
|
234
310
|
export declare var InvokeHarnessStreamOutput$: StaticUnionSchema;
|
|
235
311
|
export declare var LeftExpression$: StaticUnionSchema;
|
|
236
312
|
export declare var MemoryContent$: StaticUnionSchema;
|
|
313
|
+
export declare var MemoryRecordLeftExpression$: StaticUnionSchema;
|
|
314
|
+
export declare var MemoryRecordMetadataValue$: StaticUnionSchema;
|
|
315
|
+
export declare var MemoryRecordRightExpression$: StaticUnionSchema;
|
|
237
316
|
export declare var MetadataValue$: StaticUnionSchema;
|
|
317
|
+
export declare var OutputConfig$: StaticUnionSchema;
|
|
238
318
|
export declare var PayloadType$: StaticUnionSchema;
|
|
239
319
|
export declare var Proxy$: StaticUnionSchema;
|
|
240
320
|
export declare var ProxyCredentials$: StaticUnionSchema;
|
|
321
|
+
export declare var RecommendationConfig$: StaticUnionSchema;
|
|
322
|
+
export declare var RecommendationResult$: StaticUnionSchema;
|
|
241
323
|
export declare var ResourceLocation$: StaticUnionSchema;
|
|
242
324
|
export declare var RightExpression$: StaticUnionSchema;
|
|
243
325
|
export declare var StreamUpdate$: StaticUnionSchema;
|
|
326
|
+
export declare var SystemPromptConfig$: StaticUnionSchema;
|
|
327
|
+
export declare var ToolDescriptionConfig$: StaticUnionSchema;
|
|
328
|
+
export declare var ToolDescriptionSource$: StaticUnionSchema;
|
|
244
329
|
export declare var UserIdentifier$: StaticUnionSchema;
|
|
245
330
|
export declare var BatchCreateMemoryRecords$: StaticOperationSchema;
|
|
246
331
|
export declare var BatchDeleteMemoryRecords$: StaticOperationSchema;
|
|
247
332
|
export declare var BatchUpdateMemoryRecords$: StaticOperationSchema;
|
|
248
333
|
export declare var CompleteResourceTokenAuth$: StaticOperationSchema;
|
|
334
|
+
export declare var CreateABTest$: StaticOperationSchema;
|
|
249
335
|
export declare var CreateEvent$: StaticOperationSchema;
|
|
336
|
+
export declare var DeleteABTest$: StaticOperationSchema;
|
|
337
|
+
export declare var DeleteBatchEvaluation$: StaticOperationSchema;
|
|
250
338
|
export declare var DeleteEvent$: StaticOperationSchema;
|
|
251
339
|
export declare var DeleteMemoryRecord$: StaticOperationSchema;
|
|
340
|
+
export declare var DeleteRecommendation$: StaticOperationSchema;
|
|
252
341
|
export declare var Evaluate$: StaticOperationSchema;
|
|
342
|
+
export declare var GetABTest$: StaticOperationSchema;
|
|
253
343
|
export declare var GetAgentCard$: StaticOperationSchema;
|
|
344
|
+
export declare var GetBatchEvaluation$: StaticOperationSchema;
|
|
254
345
|
export declare var GetBrowserSession$: StaticOperationSchema;
|
|
255
346
|
export declare var GetCodeInterpreterSession$: StaticOperationSchema;
|
|
256
347
|
export declare var GetEvent$: StaticOperationSchema;
|
|
257
348
|
export declare var GetMemoryRecord$: StaticOperationSchema;
|
|
349
|
+
export declare var GetRecommendation$: StaticOperationSchema;
|
|
258
350
|
export declare var GetResourceApiKey$: StaticOperationSchema;
|
|
259
351
|
export declare var GetResourceOauth2Token$: StaticOperationSchema;
|
|
260
352
|
export declare var GetWorkloadAccessToken$: StaticOperationSchema;
|
|
@@ -265,20 +357,27 @@ export declare var InvokeAgentRuntimeCommand$: StaticOperationSchema;
|
|
|
265
357
|
export declare var InvokeBrowser$: StaticOperationSchema;
|
|
266
358
|
export declare var InvokeCodeInterpreter$: StaticOperationSchema;
|
|
267
359
|
export declare var InvokeHarness$: StaticOperationSchema;
|
|
360
|
+
export declare var ListABTests$: StaticOperationSchema;
|
|
268
361
|
export declare var ListActors$: StaticOperationSchema;
|
|
362
|
+
export declare var ListBatchEvaluations$: StaticOperationSchema;
|
|
269
363
|
export declare var ListBrowserSessions$: StaticOperationSchema;
|
|
270
364
|
export declare var ListCodeInterpreterSessions$: StaticOperationSchema;
|
|
271
365
|
export declare var ListEvents$: StaticOperationSchema;
|
|
272
366
|
export declare var ListMemoryExtractionJobs$: StaticOperationSchema;
|
|
273
367
|
export declare var ListMemoryRecords$: StaticOperationSchema;
|
|
368
|
+
export declare var ListRecommendations$: StaticOperationSchema;
|
|
274
369
|
export declare var ListSessions$: StaticOperationSchema;
|
|
275
370
|
export declare var RetrieveMemoryRecords$: StaticOperationSchema;
|
|
276
371
|
export declare var SaveBrowserSessionProfile$: StaticOperationSchema;
|
|
277
372
|
export declare var SearchRegistryRecords$: StaticOperationSchema;
|
|
373
|
+
export declare var StartBatchEvaluation$: StaticOperationSchema;
|
|
278
374
|
export declare var StartBrowserSession$: StaticOperationSchema;
|
|
279
375
|
export declare var StartCodeInterpreterSession$: StaticOperationSchema;
|
|
280
376
|
export declare var StartMemoryExtractionJob$: StaticOperationSchema;
|
|
377
|
+
export declare var StartRecommendation$: StaticOperationSchema;
|
|
378
|
+
export declare var StopBatchEvaluation$: StaticOperationSchema;
|
|
281
379
|
export declare var StopBrowserSession$: StaticOperationSchema;
|
|
282
380
|
export declare var StopCodeInterpreterSession$: StaticOperationSchema;
|
|
283
381
|
export declare var StopRuntimeSession$: StaticOperationSchema;
|
|
382
|
+
export declare var UpdateABTest$: StaticOperationSchema;
|
|
284
383
|
export declare var UpdateBrowserStream$: StaticOperationSchema;
|