@takeshape/schema 11.102.4 → 11.103.3
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/agents.d.ts +18 -2
- package/dist/agents.js +159 -38
- package/dist/builtin-schema.js +85 -94
- package/dist/migration/index.d.ts +1 -0
- package/dist/migration/index.js +3 -1
- package/dist/migration/to/v3.56.0.d.ts +4 -0
- package/dist/migration/to/v3.56.0.js +10 -0
- package/dist/models/project-schema.d.ts +1 -0
- package/dist/models/project-schema.js +4 -1
- package/dist/models/query.js +1 -1
- package/dist/models/types.d.ts +1 -0
- package/dist/project-schema/index.d.ts +4 -1
- package/dist/project-schema/index.js +2 -1
- package/dist/project-schema/latest.d.ts +42 -18
- package/dist/project-schema/migrate.js +4 -1
- package/dist/project-schema/v3.48.0.d.ts +5 -8
- package/dist/project-schema/v3.49.0.d.ts +5 -8
- package/dist/project-schema/v3.50.0.d.ts +6 -9
- package/dist/project-schema/v3.51.0.d.ts +6 -9
- package/dist/project-schema/v3.52.0.d.ts +6 -9
- package/dist/project-schema/v3.53.0.d.ts +6 -9
- package/dist/project-schema/v3.54.0.d.ts +6 -9
- package/dist/project-schema/v3.55.0.d.ts +6 -9
- package/dist/project-schema/v3.56.0.d.ts +2400 -0
- package/dist/project-schema/v3.56.0.js +7 -0
- package/dist/resolvers/ai/abort-agent-message-args.d.ts +16 -0
- package/dist/resolvers/ai/abort-agent-message-args.js +13 -0
- package/dist/resolvers/ai/abort-agent-message-response.d.ts +26 -0
- package/dist/resolvers/ai/abort-agent-message-response.js +19 -0
- package/dist/resolvers/ai/agent-chat-args.d.ts +17 -0
- package/dist/resolvers/ai/agent-chat-args.js +15 -0
- package/dist/resolvers/ai/agent-chat-payload.d.ts +35 -0
- package/dist/resolvers/ai/agent-chat-payload.js +27 -0
- package/dist/resolvers/ai/agent-chat-response.d.ts +136 -0
- package/dist/resolvers/ai/agent-chat-response.js +17 -0
- package/dist/resolvers/ai/agent-generate-args.d.ts +17 -0
- package/dist/resolvers/ai/agent-generate-args.js +15 -0
- package/dist/resolvers/ai/agent-message-payload.d.ts +84 -0
- package/dist/resolvers/ai/agent-message-payload.js +57 -0
- package/dist/resolvers/ai/agent-run-mode.d.ts +7 -0
- package/dist/resolvers/ai/agent-run-mode.js +10 -0
- package/dist/resolvers/ai/agent-session-payload.d.ts +67 -0
- package/dist/resolvers/ai/agent-session-payload.js +71 -0
- package/dist/resolvers/ai/constants.d.ts +8 -0
- package/dist/resolvers/ai/constants.js +8 -0
- package/dist/resolvers/ai/create-agent-session-response.d.ts +75 -0
- package/dist/resolvers/ai/create-agent-session-response.js +14 -0
- package/dist/resolvers/ai/embedding-search.d.ts +3 -3
- package/dist/resolvers/ai/embedding-search.js +2 -2
- package/dist/resolvers/ai/get-agent-message-args.d.ts +16 -0
- package/dist/resolvers/ai/get-agent-message-args.js +13 -0
- package/dist/resolvers/ai/get-agent-message-response.d.ts +125 -0
- package/dist/resolvers/ai/get-agent-message-response.js +29 -0
- package/dist/resolvers/ai/inspect-agent-args.d.ts +16 -0
- package/dist/resolvers/ai/inspect-agent-args.js +13 -0
- package/dist/resolvers/ai/inspect-agent-response.d.ts +74 -0
- package/dist/resolvers/ai/inspect-agent-response.js +38 -0
- package/dist/resolvers/ai/send-agent-message-args.d.ts +39 -0
- package/dist/resolvers/ai/send-agent-message-args.js +32 -0
- package/dist/resolvers/ai/send-agent-message-response.d.ts +79 -0
- package/dist/resolvers/ai/send-agent-message-response.js +21 -0
- package/dist/resolvers/takeshape/assets/asset-image-meta.d.ts +2 -0
- package/dist/resolvers/takeshape/assets/asset-image-meta.js +3 -0
- package/dist/resolvers/takeshape/assets/asset-image-params.d.ts +2 -0
- package/dist/resolvers/takeshape/assets/asset-image-params.js +3 -0
- package/dist/resolvers/takeshape/assets/asset-image.d.ts +2 -0
- package/dist/resolvers/takeshape/assets/asset-image.js +3 -0
- package/dist/resolvers/takeshape/assets/asset.d.ts +3 -1
- package/dist/resolvers/takeshape/assets/asset.js +3 -1
- package/dist/resolvers/takeshape/builtins/constants.d.ts +1 -0
- package/dist/resolvers/takeshape/builtins/constants.js +1 -0
- package/dist/schema-util.d.ts +2 -2
- package/dist/schema-util.js +1 -1
- package/dist/schemas/index.d.ts +2 -2
- package/dist/schemas/index.js +4 -2
- package/dist/schemas/project-schema/experimental.json +73 -13
- package/dist/schemas/project-schema/latest.json +14 -2
- package/dist/schemas/project-schema/v3.56.0.json +3527 -0
- package/dist/schemas/project-schema.json +3 -0
- package/dist/util/has-arg.js +2 -2
- package/examples/latest/agent-schema.json +13 -5
- package/examples/latest/all-fields-shapes-inline.json +1 -1
- package/examples/latest/all-fields-shapes.json +1 -1
- package/examples/latest/betzino.json +1 -1
- package/examples/latest/blog-schema.json +1 -1
- package/examples/latest/brewery-schema.json +1 -1
- package/examples/latest/clear-cache-schema.json +1 -1
- package/examples/latest/complex-project-schema.json +1 -1
- package/examples/latest/complex-schema.json +1 -1
- package/examples/latest/edit-schema.json +1 -1
- package/examples/latest/fabric-ecommerce.json +1 -1
- package/examples/latest/frank-and-fred-schema.json +1 -1
- package/examples/latest/klirr-schema.json +1 -1
- package/examples/latest/layers/rick-and-morty-layer.json +1 -1
- package/examples/latest/layers/shopify-layer-2023-01.json +1 -1
- package/examples/latest/layers/shopify-storefront-2023-04.json +1 -1
- package/examples/latest/layers/wordpress-2024-01.json +1 -1
- package/examples/latest/massive-schema.json +1 -1
- package/examples/latest/mill-components-schema.json +1 -1
- package/examples/latest/nested-shape-arrays.json +1 -1
- package/examples/latest/one-earth.json +1 -1
- package/examples/latest/pet-oneof-array.json +1 -1
- package/examples/latest/post-schema.json +1 -1
- package/examples/latest/pruned-shopify-product-schema.json +1 -1
- package/examples/latest/rag-example.json +1 -1
- package/examples/latest/real-world-schema.json +1 -1
- package/examples/latest/recursive-repeater-schema.json +1 -1
- package/examples/latest/recursive-schema.json +1 -1
- package/examples/latest/rick-and-morty-ast.json +1 -1
- package/examples/latest/rick-and-morty-graphql.json +1 -1
- package/examples/latest/rick-and-morty-rest.json +1 -1
- package/examples/latest/rick-and-morty-user-schema.json +1 -1
- package/examples/latest/rick-and-morty-with-indexing.json +1 -1
- package/examples/latest/schema-where-filter.json +1 -1
- package/examples/latest/schema-with-repeater-draftjs.json +1 -1
- package/examples/latest/schema-with-rick-and-morty.json +1 -1
- package/examples/latest/shape-books-v3_2_0.json +1 -1
- package/examples/latest/shape-books.json +1 -1
- package/examples/latest/shape-editor-schema-edited.json +1 -1
- package/examples/latest/shape-editor-schema-initial.json +1 -1
- package/examples/latest/shapedb-crud-every-prop-type.json +1 -1
- package/examples/latest/shopify-lookbook.json +1 -1
- package/examples/latest/shopify-product-2022-07.json +1 -1
- package/examples/latest/shopify-product-2023-04.json +1 -1
- package/examples/latest/shopify-store-with-widget.json +1 -1
- package/examples/latest/stripe-product-runtime-schema.json +1 -1
- package/examples/latest/stripe-starter-resolved.json +1 -1
- package/examples/latest/user-schema-no-required.json +1 -1
- package/examples/latest/user-schema-with-defaults.json +1 -1
- package/examples/latest/valvoline-ai-demo.json +1 -1
- package/examples/latest/vector-search-schema.json +1 -1
- package/package.json +6 -5
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* This interface was referenced by `ProjectSchemaJSON`'s JSON-Schema
|
|
8
8
|
* via the `definition` "args".
|
|
9
9
|
*/
|
|
10
|
-
export type Args = string | ObjectSchema;
|
|
10
|
+
export type Args = string | ObjectSchema | ExtendsSchema;
|
|
11
11
|
/**
|
|
12
12
|
* This interface was referenced by `ProjectSchemaJSON`'s JSON-Schema
|
|
13
13
|
* via the `definition` "objectSchema".
|
|
@@ -74,7 +74,7 @@ export type Resolver = BasicResolver | ComposeResolver;
|
|
|
74
74
|
* This interface was referenced by `ProjectSchemaJSON`'s JSON-Schema
|
|
75
75
|
* via the `definition` "basicResolver".
|
|
76
76
|
*/
|
|
77
|
-
export type BasicResolver = UtilResolver | DelegateResolver | TakeshapeResolver | ShapedbResolver | ShapedbResolverShapeNameNotRequired | GraphqlResolver | RestResolver | AwsLambdaResolver | SalsifyResolver | SyndigoResolver | FunctionResolver | AIGenerateTextResolver | AIGeneratePropertyResolver | AIEmbeddingResolver | AIEmbeddingSearchResolver | AIParseFileResolver | ChunkResolver |
|
|
77
|
+
export type BasicResolver = UtilResolver | DelegateResolver | TakeshapeResolver | ShapedbResolver | ShapedbResolverShapeNameNotRequired | GraphqlResolver | RestResolver | AwsLambdaResolver | SalsifyResolver | SyndigoResolver | FunctionResolver | AIGenerateTextResolver | AIGeneratePropertyResolver | AIEmbeddingResolver | AIEmbeddingSearchResolver | AIParseFileResolver | ChunkResolver | AISendAgentMessageResolver | AIInspectAgentResolver | AICreateAgentSessionResolver | AIGetAgentMessageResolver | AIAbortAgentMessageResolver;
|
|
78
78
|
/**
|
|
79
79
|
* Name of the resolver function.
|
|
80
80
|
*/
|
|
@@ -245,16 +245,35 @@ export type UtilChunkResolverOptions = UtilChunkResolverOptionsCharacterCount |
|
|
|
245
245
|
/**
|
|
246
246
|
* Name of the resolver function.
|
|
247
247
|
*/
|
|
248
|
-
export type AIResolverName5 = 'ai:
|
|
248
|
+
export type AIResolverName5 = 'ai:sendAgentMessage';
|
|
249
249
|
/**
|
|
250
250
|
* Name of the resolver function.
|
|
251
251
|
*/
|
|
252
|
-
export type AIResolverName6 = 'ai:
|
|
252
|
+
export type AIResolverName6 = 'ai:inspectAgent';
|
|
253
|
+
/**
|
|
254
|
+
* Name of the resolver function.
|
|
255
|
+
*/
|
|
256
|
+
export type AIResolverName7 = 'ai:createAgentSession';
|
|
257
|
+
/**
|
|
258
|
+
* Name of the resolver function.
|
|
259
|
+
*/
|
|
260
|
+
export type AIResolverName8 = 'ai:getAgentMessage';
|
|
261
|
+
/**
|
|
262
|
+
* Name of the resolver function.
|
|
263
|
+
*/
|
|
264
|
+
export type AIResolverName9 = 'ai:abortAgentMessage';
|
|
253
265
|
/**
|
|
254
266
|
* This interface was referenced by `ProjectSchemaJSON`'s JSON-Schema
|
|
255
267
|
* via the `definition` "dependencies".
|
|
256
268
|
*/
|
|
257
269
|
export type Dependencies = string;
|
|
270
|
+
/**
|
|
271
|
+
* This interface was referenced by `ProjectSchemaJSON`'s JSON-Schema
|
|
272
|
+
* via the `definition` "extendsSchema".
|
|
273
|
+
*/
|
|
274
|
+
export type ExtendsSchema = PropertySchema & {
|
|
275
|
+
extends: ObjectOrRefArray;
|
|
276
|
+
};
|
|
258
277
|
/**
|
|
259
278
|
* This interface was referenced by `ProjectSchemaJSON`'s JSON-Schema
|
|
260
279
|
* via the `definition` "returnShape".
|
|
@@ -364,7 +383,7 @@ export type StripMarkdown = boolean;
|
|
|
364
383
|
* These steps are evaluated in order until a destination is found.
|
|
365
384
|
*/
|
|
366
385
|
export type AgentTransition = AgentTransitionImmediate | AgentTransitionSuspend;
|
|
367
|
-
export type AgentStateSessionMemory1 =
|
|
386
|
+
export type AgentStateSessionMemory1 = AgentStateSessionMemoryAssignment[];
|
|
368
387
|
export type GuardID = string;
|
|
369
388
|
export type Variables1 = AgentVariable[];
|
|
370
389
|
export type HistoryStrategyTransform = HistoryStrategyTransformNone | HistoryStrategyTransformReplace | HistoryStrategyTransformSummarize;
|
|
@@ -548,13 +567,6 @@ export type ServiceHealthCheckTrigger = 'manual' | 'schedule';
|
|
|
548
567
|
export type AllOfSchema = PropertySchema & {
|
|
549
568
|
allOf: ObjectOrRefArray;
|
|
550
569
|
};
|
|
551
|
-
/**
|
|
552
|
-
* This interface was referenced by `ProjectSchemaJSON`'s JSON-Schema
|
|
553
|
-
* via the `definition` "extendsSchema".
|
|
554
|
-
*/
|
|
555
|
-
export type ExtendsSchema = PropertySchema & {
|
|
556
|
-
extends: ObjectOrRefArray;
|
|
557
|
-
};
|
|
558
570
|
/**
|
|
559
571
|
* This interface was referenced by `ProjectSchemaJSON`'s JSON-Schema
|
|
560
572
|
* via the `definition` "oneOfSchema".
|
|
@@ -619,7 +631,7 @@ export interface ProjectSchemaJSON {
|
|
|
619
631
|
/**
|
|
620
632
|
* The version of the schema format your project is using. We increase the version as we make breaking changes to the schema format.
|
|
621
633
|
*/
|
|
622
|
-
schemaVersion: '3.
|
|
634
|
+
schemaVersion: '3.56.0';
|
|
623
635
|
/**
|
|
624
636
|
* The ID of the TakeShape project this schema belongs to.
|
|
625
637
|
*/
|
|
@@ -1507,16 +1519,32 @@ export interface UtilChunkResolverOptionsSemantic {
|
|
|
1507
1519
|
*/
|
|
1508
1520
|
maxTokens?: number;
|
|
1509
1521
|
}
|
|
1510
|
-
export interface
|
|
1522
|
+
export interface AISendAgentMessageResolver {
|
|
1511
1523
|
id?: string;
|
|
1512
1524
|
name: AIResolverName5;
|
|
1513
1525
|
agentName: string;
|
|
1526
|
+
inputName: string;
|
|
1514
1527
|
}
|
|
1515
1528
|
export interface AIInspectAgentResolver {
|
|
1516
1529
|
id?: string;
|
|
1517
1530
|
name: AIResolverName6;
|
|
1518
1531
|
agentName: string;
|
|
1519
1532
|
}
|
|
1533
|
+
export interface AICreateAgentSessionResolver {
|
|
1534
|
+
id?: string;
|
|
1535
|
+
name: AIResolverName7;
|
|
1536
|
+
agentName: string;
|
|
1537
|
+
}
|
|
1538
|
+
export interface AIGetAgentMessageResolver {
|
|
1539
|
+
id?: string;
|
|
1540
|
+
name: AIResolverName8;
|
|
1541
|
+
agentName: string;
|
|
1542
|
+
}
|
|
1543
|
+
export interface AIAbortAgentMessageResolver {
|
|
1544
|
+
id?: string;
|
|
1545
|
+
name: AIResolverName9;
|
|
1546
|
+
agentName: string;
|
|
1547
|
+
}
|
|
1520
1548
|
/**
|
|
1521
1549
|
* This interface was referenced by `ProjectSchemaJSON`'s JSON-Schema
|
|
1522
1550
|
* via the `definition` "composeResolver".
|
|
@@ -1916,10 +1944,6 @@ export interface AgentTransitionImmediate {
|
|
|
1916
1944
|
sessionMemory?: AgentStateSessionMemory1;
|
|
1917
1945
|
historyStrategy?: string;
|
|
1918
1946
|
}
|
|
1919
|
-
export interface AgentStateSessionMemoryAssignment1 {
|
|
1920
|
-
memoryPath?: string;
|
|
1921
|
-
expression: string;
|
|
1922
|
-
}
|
|
1923
1947
|
export interface AgentGuard {
|
|
1924
1948
|
guardId: GuardID;
|
|
1925
1949
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { migrateTo } from "../migration/index.js";
|
|
2
|
-
import { isProjectSchemaJSONV1_0_0, isProjectSchemaJSONV3_0_0, isProjectSchemaJSONV3_1_0, isProjectSchemaJSONV3_2_0, isProjectSchemaJSONV3_3_0, isProjectSchemaJSONV3_4_0, isProjectSchemaJSONV3_5_0, isProjectSchemaJSONV3_5_1, isProjectSchemaJSONV3_6_0, isProjectSchemaJSONV3_7_0, isProjectSchemaJSONV3_8_0, isProjectSchemaJSONV3_9_0, isProjectSchemaJSONV3_10_0, isProjectSchemaJSONV3_11_0, isProjectSchemaJSONV3_12_0, isProjectSchemaJSONV3_12_1, isProjectSchemaJSONV3_12_2, isProjectSchemaJSONV3_12_3, isProjectSchemaJSONV3_13_0, isProjectSchemaJSONV3_14_0, isProjectSchemaJSONV3_15_0, isProjectSchemaJSONV3_16_0, isProjectSchemaJSONV3_17_0, isProjectSchemaJSONV3_17_1, isProjectSchemaJSONV3_18_0, isProjectSchemaJSONV3_18_1, isProjectSchemaJSONV3_18_2, isProjectSchemaJSONV3_19_0, isProjectSchemaJSONV3_20_0, isProjectSchemaJSONV3_21_0, isProjectSchemaJSONV3_22_0, isProjectSchemaJSONV3_23_0, isProjectSchemaJSONV3_24_0, isProjectSchemaJSONV3_25_0, isProjectSchemaJSONV3_26_0, isProjectSchemaJSONV3_27_0, isProjectSchemaJSONV3_28_0, isProjectSchemaJSONV3_29_0, isProjectSchemaJSONV3_30_0, isProjectSchemaJSONV3_31_0, isProjectSchemaJSONV3_32_0, isProjectSchemaJSONV3_33_0, isProjectSchemaJSONV3_34_0, isProjectSchemaJSONV3_35_0, isProjectSchemaJSONV3_36_0, isProjectSchemaJSONV3_37_0, isProjectSchemaJSONV3_38_0, isProjectSchemaJSONV3_39_0, isProjectSchemaJSONV3_40_0, isProjectSchemaJSONV3_41_0, isProjectSchemaJSONV3_42_0, isProjectSchemaJSONV3_43_0, isProjectSchemaJSONV3_44_0, isProjectSchemaJSONV3_45_0, isProjectSchemaJSONV3_46_0, isProjectSchemaJSONV3_47_0, isProjectSchemaJSONV3_48_0, isProjectSchemaJSONV3_49_0, isProjectSchemaJSONV3_50_0, isProjectSchemaJSONV3_51_0, isProjectSchemaJSONV3_52_0, isProjectSchemaJSONV3_53_0, isProjectSchemaJSONV3_54_0, isProjectSchemaJSONV4_0_0, isLatestProjectSchemaJSON } from "./index.js";
|
|
2
|
+
import { isProjectSchemaJSONV1_0_0, isProjectSchemaJSONV3_0_0, isProjectSchemaJSONV3_1_0, isProjectSchemaJSONV3_2_0, isProjectSchemaJSONV3_3_0, isProjectSchemaJSONV3_4_0, isProjectSchemaJSONV3_5_0, isProjectSchemaJSONV3_5_1, isProjectSchemaJSONV3_6_0, isProjectSchemaJSONV3_7_0, isProjectSchemaJSONV3_8_0, isProjectSchemaJSONV3_9_0, isProjectSchemaJSONV3_10_0, isProjectSchemaJSONV3_11_0, isProjectSchemaJSONV3_12_0, isProjectSchemaJSONV3_12_1, isProjectSchemaJSONV3_12_2, isProjectSchemaJSONV3_12_3, isProjectSchemaJSONV3_13_0, isProjectSchemaJSONV3_14_0, isProjectSchemaJSONV3_15_0, isProjectSchemaJSONV3_16_0, isProjectSchemaJSONV3_17_0, isProjectSchemaJSONV3_17_1, isProjectSchemaJSONV3_18_0, isProjectSchemaJSONV3_18_1, isProjectSchemaJSONV3_18_2, isProjectSchemaJSONV3_19_0, isProjectSchemaJSONV3_20_0, isProjectSchemaJSONV3_21_0, isProjectSchemaJSONV3_22_0, isProjectSchemaJSONV3_23_0, isProjectSchemaJSONV3_24_0, isProjectSchemaJSONV3_25_0, isProjectSchemaJSONV3_26_0, isProjectSchemaJSONV3_27_0, isProjectSchemaJSONV3_28_0, isProjectSchemaJSONV3_29_0, isProjectSchemaJSONV3_30_0, isProjectSchemaJSONV3_31_0, isProjectSchemaJSONV3_32_0, isProjectSchemaJSONV3_33_0, isProjectSchemaJSONV3_34_0, isProjectSchemaJSONV3_35_0, isProjectSchemaJSONV3_36_0, isProjectSchemaJSONV3_37_0, isProjectSchemaJSONV3_38_0, isProjectSchemaJSONV3_39_0, isProjectSchemaJSONV3_40_0, isProjectSchemaJSONV3_41_0, isProjectSchemaJSONV3_42_0, isProjectSchemaJSONV3_43_0, isProjectSchemaJSONV3_44_0, isProjectSchemaJSONV3_45_0, isProjectSchemaJSONV3_46_0, isProjectSchemaJSONV3_47_0, isProjectSchemaJSONV3_48_0, isProjectSchemaJSONV3_49_0, isProjectSchemaJSONV3_50_0, isProjectSchemaJSONV3_51_0, isProjectSchemaJSONV3_52_0, isProjectSchemaJSONV3_53_0, isProjectSchemaJSONV3_54_0, isProjectSchemaJSONV3_55_0, isProjectSchemaJSONV4_0_0, isLatestProjectSchemaJSON } from "./index.js";
|
|
3
3
|
export async function migrateToLatestProjectSchema(context, projectSchema) {
|
|
4
4
|
if (isLatestProjectSchemaJSON(projectSchema)) {
|
|
5
5
|
return projectSchema;
|
|
@@ -193,6 +193,9 @@ export async function migrateToLatestProjectSchema(context, projectSchema) {
|
|
|
193
193
|
if (isProjectSchemaJSONV3_54_0(projectSchema)) {
|
|
194
194
|
projectSchema = await migrateTo['v3.55.0'](context, projectSchema);
|
|
195
195
|
}
|
|
196
|
+
if (isProjectSchemaJSONV3_55_0(projectSchema)) {
|
|
197
|
+
projectSchema = await migrateTo['v3.56.0'](context, projectSchema);
|
|
198
|
+
}
|
|
196
199
|
if (isProjectSchemaJSONV4_0_0(projectSchema)) {
|
|
197
200
|
throw new Error('You are using an unreleased schema version. Migration is not possible');
|
|
198
201
|
}
|
|
@@ -74,7 +74,7 @@ export type ResolverV3_48_0 = BasicResolverV3_48_0 | ComposeResolverV3_48_0;
|
|
|
74
74
|
* This interface was referenced by `ProjectSchemaJSONV3_48_0`'s JSON-Schema
|
|
75
75
|
* via the `definition` "basicResolver".
|
|
76
76
|
*/
|
|
77
|
-
export type BasicResolverV3_48_0 = UtilResolverV3_48_0 | DelegateResolverV3_48_0 | TakeshapeResolverV3_48_0 | ShapedbResolverV3_48_0 | ShapedbResolverShapeNameNotRequiredV3_48_0 | GraphqlResolverV3_48_0 | RestResolverV3_48_0 | AwsLambdaResolverV3_48_0 | SalsifyResolverV3_48_0 | FunctionResolverV3_48_0 | AIGenerateTextResolverV3_48_0 | AIEmbeddingResolverV3_48_0 | AIParseFileResolverV3_48_0 |
|
|
77
|
+
export type BasicResolverV3_48_0 = UtilResolverV3_48_0 | DelegateResolverV3_48_0 | TakeshapeResolverV3_48_0 | ShapedbResolverV3_48_0 | ShapedbResolverShapeNameNotRequiredV3_48_0 | GraphqlResolverV3_48_0 | RestResolverV3_48_0 | AwsLambdaResolverV3_48_0 | SalsifyResolverV3_48_0 | FunctionResolverV3_48_0 | AIGenerateTextResolverV3_48_0 | AIEmbeddingResolverV3_48_0 | AIParseFileResolverV3_48_0 | AISendAgentMessageResolverV3_48_0;
|
|
78
78
|
/**
|
|
79
79
|
* Name of the resolver function.
|
|
80
80
|
*/
|
|
@@ -224,7 +224,7 @@ export type AIResolverNameV3_48_02 = 'ai:parseFile';
|
|
|
224
224
|
/**
|
|
225
225
|
* Name of the resolver function.
|
|
226
226
|
*/
|
|
227
|
-
export type AIResolverNameV3_48_03 = 'ai:
|
|
227
|
+
export type AIResolverNameV3_48_03 = 'ai:sendAgentMessage';
|
|
228
228
|
/**
|
|
229
229
|
* This interface was referenced by `ProjectSchemaJSONV3_48_0`'s JSON-Schema
|
|
230
230
|
* via the `definition` "dependencies".
|
|
@@ -339,7 +339,7 @@ export type StripMarkdownV3_48_0 = boolean;
|
|
|
339
339
|
* These steps are evaluated in order until a destination is found.
|
|
340
340
|
*/
|
|
341
341
|
export type AgentTransitionV3_48_0 = AgentTransitionImmediateV3_48_0 | AgentTransitionSuspendV3_48_0;
|
|
342
|
-
export type AgentStateSessionMemoryV3_48_01 =
|
|
342
|
+
export type AgentStateSessionMemoryV3_48_01 = AgentStateSessionMemoryAssignmentV3_48_0[];
|
|
343
343
|
export type GuardIDV3_48_0 = string;
|
|
344
344
|
export type VariablesV3_48_01 = AgentVariableV3_48_0[];
|
|
345
345
|
export type HistoryStrategyTransformV3_48_0 = HistoryStrategyTransformNoneV3_48_0 | HistoryStrategyTransformReplaceV3_48_0 | HistoryStrategyTransformSummarizeV3_48_0;
|
|
@@ -1360,10 +1360,11 @@ export interface AIParseFileResolverV3_48_0 {
|
|
|
1360
1360
|
args?: ParameterConfigForJsonV3_48_0;
|
|
1361
1361
|
results?: ParameterConfigForJsonV3_48_0;
|
|
1362
1362
|
}
|
|
1363
|
-
export interface
|
|
1363
|
+
export interface AISendAgentMessageResolverV3_48_0 {
|
|
1364
1364
|
id?: string;
|
|
1365
1365
|
name: AIResolverNameV3_48_03;
|
|
1366
1366
|
agentName: string;
|
|
1367
|
+
inputName: string;
|
|
1367
1368
|
}
|
|
1368
1369
|
/**
|
|
1369
1370
|
* This interface was referenced by `ProjectSchemaJSONV3_48_0`'s JSON-Schema
|
|
@@ -1764,10 +1765,6 @@ export interface AgentTransitionImmediateV3_48_0 {
|
|
|
1764
1765
|
sessionMemory?: AgentStateSessionMemoryV3_48_01;
|
|
1765
1766
|
historyStrategy?: string;
|
|
1766
1767
|
}
|
|
1767
|
-
export interface AgentStateSessionMemoryAssignmentV3_48_01 {
|
|
1768
|
-
memoryPath?: string;
|
|
1769
|
-
expression: string;
|
|
1770
|
-
}
|
|
1771
1768
|
export interface AgentGuardV3_48_0 {
|
|
1772
1769
|
guardId: GuardIDV3_48_0;
|
|
1773
1770
|
}
|
|
@@ -74,7 +74,7 @@ export type ResolverV3_49_0 = BasicResolverV3_49_0 | ComposeResolverV3_49_0;
|
|
|
74
74
|
* This interface was referenced by `ProjectSchemaJSONV3_49_0`'s JSON-Schema
|
|
75
75
|
* via the `definition` "basicResolver".
|
|
76
76
|
*/
|
|
77
|
-
export type BasicResolverV3_49_0 = UtilResolverV3_49_0 | DelegateResolverV3_49_0 | TakeshapeResolverV3_49_0 | ShapedbResolverV3_49_0 | ShapedbResolverShapeNameNotRequiredV3_49_0 | GraphqlResolverV3_49_0 | RestResolverV3_49_0 | AwsLambdaResolverV3_49_0 | SalsifyResolverV3_49_0 | FunctionResolverV3_49_0 | AIGenerateTextResolverV3_49_0 | AIEmbeddingResolverV3_49_0 | AIParseFileResolverV3_49_0 |
|
|
77
|
+
export type BasicResolverV3_49_0 = UtilResolverV3_49_0 | DelegateResolverV3_49_0 | TakeshapeResolverV3_49_0 | ShapedbResolverV3_49_0 | ShapedbResolverShapeNameNotRequiredV3_49_0 | GraphqlResolverV3_49_0 | RestResolverV3_49_0 | AwsLambdaResolverV3_49_0 | SalsifyResolverV3_49_0 | FunctionResolverV3_49_0 | AIGenerateTextResolverV3_49_0 | AIEmbeddingResolverV3_49_0 | AIParseFileResolverV3_49_0 | AISendAgentMessageResolverV3_49_0;
|
|
78
78
|
/**
|
|
79
79
|
* Name of the resolver function.
|
|
80
80
|
*/
|
|
@@ -224,7 +224,7 @@ export type AIResolverNameV3_49_02 = 'ai:parseFile';
|
|
|
224
224
|
/**
|
|
225
225
|
* Name of the resolver function.
|
|
226
226
|
*/
|
|
227
|
-
export type AIResolverNameV3_49_03 = 'ai:
|
|
227
|
+
export type AIResolverNameV3_49_03 = 'ai:sendAgentMessage';
|
|
228
228
|
/**
|
|
229
229
|
* This interface was referenced by `ProjectSchemaJSONV3_49_0`'s JSON-Schema
|
|
230
230
|
* via the `definition` "dependencies".
|
|
@@ -339,7 +339,7 @@ export type StripMarkdownV3_49_0 = boolean;
|
|
|
339
339
|
* These steps are evaluated in order until a destination is found.
|
|
340
340
|
*/
|
|
341
341
|
export type AgentTransitionV3_49_0 = AgentTransitionImmediateV3_49_0 | AgentTransitionSuspendV3_49_0;
|
|
342
|
-
export type AgentStateSessionMemoryV3_49_01 =
|
|
342
|
+
export type AgentStateSessionMemoryV3_49_01 = AgentStateSessionMemoryAssignmentV3_49_0[];
|
|
343
343
|
export type GuardIDV3_49_0 = string;
|
|
344
344
|
export type VariablesV3_49_01 = AgentVariableV3_49_0[];
|
|
345
345
|
export type HistoryStrategyTransformV3_49_0 = HistoryStrategyTransformNoneV3_49_0 | HistoryStrategyTransformReplaceV3_49_0 | HistoryStrategyTransformSummarizeV3_49_0;
|
|
@@ -1360,10 +1360,11 @@ export interface AIParseFileResolverV3_49_0 {
|
|
|
1360
1360
|
args?: ParameterConfigForJsonV3_49_0;
|
|
1361
1361
|
results?: ParameterConfigForJsonV3_49_0;
|
|
1362
1362
|
}
|
|
1363
|
-
export interface
|
|
1363
|
+
export interface AISendAgentMessageResolverV3_49_0 {
|
|
1364
1364
|
id?: string;
|
|
1365
1365
|
name: AIResolverNameV3_49_03;
|
|
1366
1366
|
agentName: string;
|
|
1367
|
+
inputName: string;
|
|
1367
1368
|
}
|
|
1368
1369
|
/**
|
|
1369
1370
|
* This interface was referenced by `ProjectSchemaJSONV3_49_0`'s JSON-Schema
|
|
@@ -1764,10 +1765,6 @@ export interface AgentTransitionImmediateV3_49_0 {
|
|
|
1764
1765
|
sessionMemory?: AgentStateSessionMemoryV3_49_01;
|
|
1765
1766
|
historyStrategy?: string;
|
|
1766
1767
|
}
|
|
1767
|
-
export interface AgentStateSessionMemoryAssignmentV3_49_01 {
|
|
1768
|
-
memoryPath?: string;
|
|
1769
|
-
expression: string;
|
|
1770
|
-
}
|
|
1771
1768
|
export interface AgentGuardV3_49_0 {
|
|
1772
1769
|
guardId: GuardIDV3_49_0;
|
|
1773
1770
|
}
|
|
@@ -74,7 +74,7 @@ export type ResolverV3_50_0 = BasicResolverV3_50_0 | ComposeResolverV3_50_0;
|
|
|
74
74
|
* This interface was referenced by `ProjectSchemaJSONV3_50_0`'s JSON-Schema
|
|
75
75
|
* via the `definition` "basicResolver".
|
|
76
76
|
*/
|
|
77
|
-
export type BasicResolverV3_50_0 = UtilResolverV3_50_0 | DelegateResolverV3_50_0 | TakeshapeResolverV3_50_0 | ShapedbResolverV3_50_0 | ShapedbResolverShapeNameNotRequiredV3_50_0 | GraphqlResolverV3_50_0 | RestResolverV3_50_0 | AwsLambdaResolverV3_50_0 | SalsifyResolverV3_50_0 | SyndigoResolverV3_50_0 | FunctionResolverV3_50_0 | AIGenerateTextResolverV3_50_0 | AIGeneratePropertyResolverV3_50_0 | AIEmbeddingResolverV3_50_0 | AIParseFileResolverV3_50_0 |
|
|
77
|
+
export type BasicResolverV3_50_0 = UtilResolverV3_50_0 | DelegateResolverV3_50_0 | TakeshapeResolverV3_50_0 | ShapedbResolverV3_50_0 | ShapedbResolverShapeNameNotRequiredV3_50_0 | GraphqlResolverV3_50_0 | RestResolverV3_50_0 | AwsLambdaResolverV3_50_0 | SalsifyResolverV3_50_0 | SyndigoResolverV3_50_0 | FunctionResolverV3_50_0 | AIGenerateTextResolverV3_50_0 | AIGeneratePropertyResolverV3_50_0 | AIEmbeddingResolverV3_50_0 | AIParseFileResolverV3_50_0 | AISendAgentMessageResolverV3_50_0 | AIInspectAgentResolverV3_50_0;
|
|
78
78
|
/**
|
|
79
79
|
* Name of the resolver function.
|
|
80
80
|
*/
|
|
@@ -232,11 +232,11 @@ export type AIResolverNameV3_50_03 = 'ai:parseFile';
|
|
|
232
232
|
/**
|
|
233
233
|
* Name of the resolver function.
|
|
234
234
|
*/
|
|
235
|
-
export type AIResolverNameV3_50_04 = 'ai:
|
|
235
|
+
export type AIResolverNameV3_50_04 = 'ai:sendAgentMessage';
|
|
236
236
|
/**
|
|
237
237
|
* Name of the resolver function.
|
|
238
238
|
*/
|
|
239
|
-
export type AIResolverNameV3_50_05 = 'ai:
|
|
239
|
+
export type AIResolverNameV3_50_05 = 'ai:inspectAgent';
|
|
240
240
|
/**
|
|
241
241
|
* This interface was referenced by `ProjectSchemaJSONV3_50_0`'s JSON-Schema
|
|
242
242
|
* via the `definition` "dependencies".
|
|
@@ -351,7 +351,7 @@ export type StripMarkdownV3_50_0 = boolean;
|
|
|
351
351
|
* These steps are evaluated in order until a destination is found.
|
|
352
352
|
*/
|
|
353
353
|
export type AgentTransitionV3_50_0 = AgentTransitionImmediateV3_50_0 | AgentTransitionSuspendV3_50_0;
|
|
354
|
-
export type AgentStateSessionMemoryV3_50_01 =
|
|
354
|
+
export type AgentStateSessionMemoryV3_50_01 = AgentStateSessionMemoryAssignmentV3_50_0[];
|
|
355
355
|
export type GuardIDV3_50_0 = string;
|
|
356
356
|
export type VariablesV3_50_01 = AgentVariableV3_50_0[];
|
|
357
357
|
export type HistoryStrategyTransformV3_50_0 = HistoryStrategyTransformNoneV3_50_0 | HistoryStrategyTransformReplaceV3_50_0 | HistoryStrategyTransformSummarizeV3_50_0;
|
|
@@ -1407,10 +1407,11 @@ export interface AIParseFileResolverV3_50_0 {
|
|
|
1407
1407
|
args?: ParameterConfigForJsonV3_50_0;
|
|
1408
1408
|
results?: ParameterConfigForJsonV3_50_0;
|
|
1409
1409
|
}
|
|
1410
|
-
export interface
|
|
1410
|
+
export interface AISendAgentMessageResolverV3_50_0 {
|
|
1411
1411
|
id?: string;
|
|
1412
1412
|
name: AIResolverNameV3_50_04;
|
|
1413
1413
|
agentName: string;
|
|
1414
|
+
inputName: string;
|
|
1414
1415
|
}
|
|
1415
1416
|
export interface AIInspectAgentResolverV3_50_0 {
|
|
1416
1417
|
id?: string;
|
|
@@ -1816,10 +1817,6 @@ export interface AgentTransitionImmediateV3_50_0 {
|
|
|
1816
1817
|
sessionMemory?: AgentStateSessionMemoryV3_50_01;
|
|
1817
1818
|
historyStrategy?: string;
|
|
1818
1819
|
}
|
|
1819
|
-
export interface AgentStateSessionMemoryAssignmentV3_50_01 {
|
|
1820
|
-
memoryPath?: string;
|
|
1821
|
-
expression: string;
|
|
1822
|
-
}
|
|
1823
1820
|
export interface AgentGuardV3_50_0 {
|
|
1824
1821
|
guardId: GuardIDV3_50_0;
|
|
1825
1822
|
}
|
|
@@ -74,7 +74,7 @@ export type ResolverV3_51_0 = BasicResolverV3_51_0 | ComposeResolverV3_51_0;
|
|
|
74
74
|
* This interface was referenced by `ProjectSchemaJSONV3_51_0`'s JSON-Schema
|
|
75
75
|
* via the `definition` "basicResolver".
|
|
76
76
|
*/
|
|
77
|
-
export type BasicResolverV3_51_0 = UtilResolverV3_51_0 | DelegateResolverV3_51_0 | TakeshapeResolverV3_51_0 | ShapedbResolverV3_51_0 | ShapedbResolverShapeNameNotRequiredV3_51_0 | GraphqlResolverV3_51_0 | RestResolverV3_51_0 | AwsLambdaResolverV3_51_0 | SalsifyResolverV3_51_0 | SyndigoResolverV3_51_0 | FunctionResolverV3_51_0 | AIGenerateTextResolverV3_51_0 | AIGeneratePropertyResolverV3_51_0 | AIEmbeddingResolverV3_51_0 | AIParseFileResolverV3_51_0 |
|
|
77
|
+
export type BasicResolverV3_51_0 = UtilResolverV3_51_0 | DelegateResolverV3_51_0 | TakeshapeResolverV3_51_0 | ShapedbResolverV3_51_0 | ShapedbResolverShapeNameNotRequiredV3_51_0 | GraphqlResolverV3_51_0 | RestResolverV3_51_0 | AwsLambdaResolverV3_51_0 | SalsifyResolverV3_51_0 | SyndigoResolverV3_51_0 | FunctionResolverV3_51_0 | AIGenerateTextResolverV3_51_0 | AIGeneratePropertyResolverV3_51_0 | AIEmbeddingResolverV3_51_0 | AIParseFileResolverV3_51_0 | AISendAgentMessageResolverV3_51_0 | AIInspectAgentResolverV3_51_0;
|
|
78
78
|
/**
|
|
79
79
|
* Name of the resolver function.
|
|
80
80
|
*/
|
|
@@ -232,11 +232,11 @@ export type AIResolverNameV3_51_03 = 'ai:parseFile';
|
|
|
232
232
|
/**
|
|
233
233
|
* Name of the resolver function.
|
|
234
234
|
*/
|
|
235
|
-
export type AIResolverNameV3_51_04 = 'ai:
|
|
235
|
+
export type AIResolverNameV3_51_04 = 'ai:sendAgentMessage';
|
|
236
236
|
/**
|
|
237
237
|
* Name of the resolver function.
|
|
238
238
|
*/
|
|
239
|
-
export type AIResolverNameV3_51_05 = 'ai:
|
|
239
|
+
export type AIResolverNameV3_51_05 = 'ai:inspectAgent';
|
|
240
240
|
/**
|
|
241
241
|
* This interface was referenced by `ProjectSchemaJSONV3_51_0`'s JSON-Schema
|
|
242
242
|
* via the `definition` "dependencies".
|
|
@@ -351,7 +351,7 @@ export type StripMarkdownV3_51_0 = boolean;
|
|
|
351
351
|
* These steps are evaluated in order until a destination is found.
|
|
352
352
|
*/
|
|
353
353
|
export type AgentTransitionV3_51_0 = AgentTransitionImmediateV3_51_0 | AgentTransitionSuspendV3_51_0;
|
|
354
|
-
export type AgentStateSessionMemoryV3_51_01 =
|
|
354
|
+
export type AgentStateSessionMemoryV3_51_01 = AgentStateSessionMemoryAssignmentV3_51_0[];
|
|
355
355
|
export type GuardIDV3_51_0 = string;
|
|
356
356
|
export type VariablesV3_51_01 = AgentVariableV3_51_0[];
|
|
357
357
|
export type HistoryStrategyTransformV3_51_0 = HistoryStrategyTransformNoneV3_51_0 | HistoryStrategyTransformReplaceV3_51_0 | HistoryStrategyTransformSummarizeV3_51_0;
|
|
@@ -1407,10 +1407,11 @@ export interface AIParseFileResolverV3_51_0 {
|
|
|
1407
1407
|
args?: ParameterConfigForJsonV3_51_0;
|
|
1408
1408
|
results?: ParameterConfigForJsonV3_51_0;
|
|
1409
1409
|
}
|
|
1410
|
-
export interface
|
|
1410
|
+
export interface AISendAgentMessageResolverV3_51_0 {
|
|
1411
1411
|
id?: string;
|
|
1412
1412
|
name: AIResolverNameV3_51_04;
|
|
1413
1413
|
agentName: string;
|
|
1414
|
+
inputName: string;
|
|
1414
1415
|
}
|
|
1415
1416
|
export interface AIInspectAgentResolverV3_51_0 {
|
|
1416
1417
|
id?: string;
|
|
@@ -1816,10 +1817,6 @@ export interface AgentTransitionImmediateV3_51_0 {
|
|
|
1816
1817
|
sessionMemory?: AgentStateSessionMemoryV3_51_01;
|
|
1817
1818
|
historyStrategy?: string;
|
|
1818
1819
|
}
|
|
1819
|
-
export interface AgentStateSessionMemoryAssignmentV3_51_01 {
|
|
1820
|
-
memoryPath?: string;
|
|
1821
|
-
expression: string;
|
|
1822
|
-
}
|
|
1823
1820
|
export interface AgentGuardV3_51_0 {
|
|
1824
1821
|
guardId: GuardIDV3_51_0;
|
|
1825
1822
|
}
|
|
@@ -74,7 +74,7 @@ export type ResolverV3_52_0 = BasicResolverV3_52_0 | ComposeResolverV3_52_0;
|
|
|
74
74
|
* This interface was referenced by `ProjectSchemaJSONV3_52_0`'s JSON-Schema
|
|
75
75
|
* via the `definition` "basicResolver".
|
|
76
76
|
*/
|
|
77
|
-
export type BasicResolverV3_52_0 = UtilResolverV3_52_0 | DelegateResolverV3_52_0 | TakeshapeResolverV3_52_0 | ShapedbResolverV3_52_0 | ShapedbResolverShapeNameNotRequiredV3_52_0 | GraphqlResolverV3_52_0 | RestResolverV3_52_0 | AwsLambdaResolverV3_52_0 | SalsifyResolverV3_52_0 | SyndigoResolverV3_52_0 | FunctionResolverV3_52_0 | AIGenerateTextResolverV3_52_0 | AIGeneratePropertyResolverV3_52_0 | AIEmbeddingResolverV3_52_0 | AIParseFileResolverV3_52_0 |
|
|
77
|
+
export type BasicResolverV3_52_0 = UtilResolverV3_52_0 | DelegateResolverV3_52_0 | TakeshapeResolverV3_52_0 | ShapedbResolverV3_52_0 | ShapedbResolverShapeNameNotRequiredV3_52_0 | GraphqlResolverV3_52_0 | RestResolverV3_52_0 | AwsLambdaResolverV3_52_0 | SalsifyResolverV3_52_0 | SyndigoResolverV3_52_0 | FunctionResolverV3_52_0 | AIGenerateTextResolverV3_52_0 | AIGeneratePropertyResolverV3_52_0 | AIEmbeddingResolverV3_52_0 | AIParseFileResolverV3_52_0 | AISendAgentMessageResolverV3_52_0 | AIInspectAgentResolverV3_52_0;
|
|
78
78
|
/**
|
|
79
79
|
* Name of the resolver function.
|
|
80
80
|
*/
|
|
@@ -232,11 +232,11 @@ export type AIResolverNameV3_52_03 = 'ai:parseFile';
|
|
|
232
232
|
/**
|
|
233
233
|
* Name of the resolver function.
|
|
234
234
|
*/
|
|
235
|
-
export type AIResolverNameV3_52_04 = 'ai:
|
|
235
|
+
export type AIResolverNameV3_52_04 = 'ai:sendAgentMessage';
|
|
236
236
|
/**
|
|
237
237
|
* Name of the resolver function.
|
|
238
238
|
*/
|
|
239
|
-
export type AIResolverNameV3_52_05 = 'ai:
|
|
239
|
+
export type AIResolverNameV3_52_05 = 'ai:inspectAgent';
|
|
240
240
|
/**
|
|
241
241
|
* This interface was referenced by `ProjectSchemaJSONV3_52_0`'s JSON-Schema
|
|
242
242
|
* via the `definition` "dependencies".
|
|
@@ -351,7 +351,7 @@ export type StripMarkdownV3_52_0 = boolean;
|
|
|
351
351
|
* These steps are evaluated in order until a destination is found.
|
|
352
352
|
*/
|
|
353
353
|
export type AgentTransitionV3_52_0 = AgentTransitionImmediateV3_52_0 | AgentTransitionSuspendV3_52_0;
|
|
354
|
-
export type AgentStateSessionMemoryV3_52_01 =
|
|
354
|
+
export type AgentStateSessionMemoryV3_52_01 = AgentStateSessionMemoryAssignmentV3_52_0[];
|
|
355
355
|
export type GuardIDV3_52_0 = string;
|
|
356
356
|
export type VariablesV3_52_01 = AgentVariableV3_52_0[];
|
|
357
357
|
export type HistoryStrategyTransformV3_52_0 = HistoryStrategyTransformNoneV3_52_0 | HistoryStrategyTransformReplaceV3_52_0 | HistoryStrategyTransformSummarizeV3_52_0;
|
|
@@ -1407,10 +1407,11 @@ export interface AIParseFileResolverV3_52_0 {
|
|
|
1407
1407
|
args?: ParameterConfigForJsonV3_52_0;
|
|
1408
1408
|
results?: ParameterConfigForJsonV3_52_0;
|
|
1409
1409
|
}
|
|
1410
|
-
export interface
|
|
1410
|
+
export interface AISendAgentMessageResolverV3_52_0 {
|
|
1411
1411
|
id?: string;
|
|
1412
1412
|
name: AIResolverNameV3_52_04;
|
|
1413
1413
|
agentName: string;
|
|
1414
|
+
inputName: string;
|
|
1414
1415
|
}
|
|
1415
1416
|
export interface AIInspectAgentResolverV3_52_0 {
|
|
1416
1417
|
id?: string;
|
|
@@ -1816,10 +1817,6 @@ export interface AgentTransitionImmediateV3_52_0 {
|
|
|
1816
1817
|
sessionMemory?: AgentStateSessionMemoryV3_52_01;
|
|
1817
1818
|
historyStrategy?: string;
|
|
1818
1819
|
}
|
|
1819
|
-
export interface AgentStateSessionMemoryAssignmentV3_52_01 {
|
|
1820
|
-
memoryPath?: string;
|
|
1821
|
-
expression: string;
|
|
1822
|
-
}
|
|
1823
1820
|
export interface AgentGuardV3_52_0 {
|
|
1824
1821
|
guardId: GuardIDV3_52_0;
|
|
1825
1822
|
}
|
|
@@ -74,7 +74,7 @@ export type ResolverV3_53_0 = BasicResolverV3_53_0 | ComposeResolverV3_53_0;
|
|
|
74
74
|
* This interface was referenced by `ProjectSchemaJSONV3_53_0`'s JSON-Schema
|
|
75
75
|
* via the `definition` "basicResolver".
|
|
76
76
|
*/
|
|
77
|
-
export type BasicResolverV3_53_0 = UtilResolverV3_53_0 | DelegateResolverV3_53_0 | TakeshapeResolverV3_53_0 | ShapedbResolverV3_53_0 | ShapedbResolverShapeNameNotRequiredV3_53_0 | GraphqlResolverV3_53_0 | RestResolverV3_53_0 | AwsLambdaResolverV3_53_0 | SalsifyResolverV3_53_0 | SyndigoResolverV3_53_0 | FunctionResolverV3_53_0 | AIGenerateTextResolverV3_53_0 | AIGeneratePropertyResolverV3_53_0 | AIEmbeddingResolverV3_53_0 | AIParseFileResolverV3_53_0 | ChunkResolverV3_53_0 |
|
|
77
|
+
export type BasicResolverV3_53_0 = UtilResolverV3_53_0 | DelegateResolverV3_53_0 | TakeshapeResolverV3_53_0 | ShapedbResolverV3_53_0 | ShapedbResolverShapeNameNotRequiredV3_53_0 | GraphqlResolverV3_53_0 | RestResolverV3_53_0 | AwsLambdaResolverV3_53_0 | SalsifyResolverV3_53_0 | SyndigoResolverV3_53_0 | FunctionResolverV3_53_0 | AIGenerateTextResolverV3_53_0 | AIGeneratePropertyResolverV3_53_0 | AIEmbeddingResolverV3_53_0 | AIParseFileResolverV3_53_0 | ChunkResolverV3_53_0 | AISendAgentMessageResolverV3_53_0 | AIInspectAgentResolverV3_53_0;
|
|
78
78
|
/**
|
|
79
79
|
* Name of the resolver function.
|
|
80
80
|
*/
|
|
@@ -241,11 +241,11 @@ export type UtilChunkResolverOptionsV3_53_0 = UtilChunkResolverOptionsCharacterC
|
|
|
241
241
|
/**
|
|
242
242
|
* Name of the resolver function.
|
|
243
243
|
*/
|
|
244
|
-
export type AIResolverNameV3_53_04 = 'ai:
|
|
244
|
+
export type AIResolverNameV3_53_04 = 'ai:sendAgentMessage';
|
|
245
245
|
/**
|
|
246
246
|
* Name of the resolver function.
|
|
247
247
|
*/
|
|
248
|
-
export type AIResolverNameV3_53_05 = 'ai:
|
|
248
|
+
export type AIResolverNameV3_53_05 = 'ai:inspectAgent';
|
|
249
249
|
/**
|
|
250
250
|
* This interface was referenced by `ProjectSchemaJSONV3_53_0`'s JSON-Schema
|
|
251
251
|
* via the `definition` "dependencies".
|
|
@@ -360,7 +360,7 @@ export type StripMarkdownV3_53_0 = boolean;
|
|
|
360
360
|
* These steps are evaluated in order until a destination is found.
|
|
361
361
|
*/
|
|
362
362
|
export type AgentTransitionV3_53_0 = AgentTransitionImmediateV3_53_0 | AgentTransitionSuspendV3_53_0;
|
|
363
|
-
export type AgentStateSessionMemoryV3_53_01 =
|
|
363
|
+
export type AgentStateSessionMemoryV3_53_01 = AgentStateSessionMemoryAssignmentV3_53_0[];
|
|
364
364
|
export type GuardIDV3_53_0 = string;
|
|
365
365
|
export type VariablesV3_53_01 = AgentVariableV3_53_0[];
|
|
366
366
|
export type HistoryStrategyTransformV3_53_0 = HistoryStrategyTransformNoneV3_53_0 | HistoryStrategyTransformReplaceV3_53_0 | HistoryStrategyTransformSummarizeV3_53_0;
|
|
@@ -1488,10 +1488,11 @@ export interface UtilChunkResolverOptionsSemanticV3_53_0 {
|
|
|
1488
1488
|
*/
|
|
1489
1489
|
maxTokens?: number;
|
|
1490
1490
|
}
|
|
1491
|
-
export interface
|
|
1491
|
+
export interface AISendAgentMessageResolverV3_53_0 {
|
|
1492
1492
|
id?: string;
|
|
1493
1493
|
name: AIResolverNameV3_53_04;
|
|
1494
1494
|
agentName: string;
|
|
1495
|
+
inputName: string;
|
|
1495
1496
|
}
|
|
1496
1497
|
export interface AIInspectAgentResolverV3_53_0 {
|
|
1497
1498
|
id?: string;
|
|
@@ -1897,10 +1898,6 @@ export interface AgentTransitionImmediateV3_53_0 {
|
|
|
1897
1898
|
sessionMemory?: AgentStateSessionMemoryV3_53_01;
|
|
1898
1899
|
historyStrategy?: string;
|
|
1899
1900
|
}
|
|
1900
|
-
export interface AgentStateSessionMemoryAssignmentV3_53_01 {
|
|
1901
|
-
memoryPath?: string;
|
|
1902
|
-
expression: string;
|
|
1903
|
-
}
|
|
1904
1901
|
export interface AgentGuardV3_53_0 {
|
|
1905
1902
|
guardId: GuardIDV3_53_0;
|
|
1906
1903
|
}
|
|
@@ -74,7 +74,7 @@ export type ResolverV3_54_0 = BasicResolverV3_54_0 | ComposeResolverV3_54_0;
|
|
|
74
74
|
* This interface was referenced by `ProjectSchemaJSONV3_54_0`'s JSON-Schema
|
|
75
75
|
* via the `definition` "basicResolver".
|
|
76
76
|
*/
|
|
77
|
-
export type BasicResolverV3_54_0 = UtilResolverV3_54_0 | DelegateResolverV3_54_0 | TakeshapeResolverV3_54_0 | ShapedbResolverV3_54_0 | ShapedbResolverShapeNameNotRequiredV3_54_0 | GraphqlResolverV3_54_0 | RestResolverV3_54_0 | AwsLambdaResolverV3_54_0 | SalsifyResolverV3_54_0 | SyndigoResolverV3_54_0 | FunctionResolverV3_54_0 | AIGenerateTextResolverV3_54_0 | AIGeneratePropertyResolverV3_54_0 | AIEmbeddingResolverV3_54_0 | AIEmbeddingSearchResolverV3_54_0 | AIParseFileResolverV3_54_0 | ChunkResolverV3_54_0 |
|
|
77
|
+
export type BasicResolverV3_54_0 = UtilResolverV3_54_0 | DelegateResolverV3_54_0 | TakeshapeResolverV3_54_0 | ShapedbResolverV3_54_0 | ShapedbResolverShapeNameNotRequiredV3_54_0 | GraphqlResolverV3_54_0 | RestResolverV3_54_0 | AwsLambdaResolverV3_54_0 | SalsifyResolverV3_54_0 | SyndigoResolverV3_54_0 | FunctionResolverV3_54_0 | AIGenerateTextResolverV3_54_0 | AIGeneratePropertyResolverV3_54_0 | AIEmbeddingResolverV3_54_0 | AIEmbeddingSearchResolverV3_54_0 | AIParseFileResolverV3_54_0 | ChunkResolverV3_54_0 | AISendAgentMessageResolverV3_54_0 | AIInspectAgentResolverV3_54_0;
|
|
78
78
|
/**
|
|
79
79
|
* Name of the resolver function.
|
|
80
80
|
*/
|
|
@@ -245,11 +245,11 @@ export type UtilChunkResolverOptionsV3_54_0 = UtilChunkResolverOptionsCharacterC
|
|
|
245
245
|
/**
|
|
246
246
|
* Name of the resolver function.
|
|
247
247
|
*/
|
|
248
|
-
export type AIResolverNameV3_54_05 = 'ai:
|
|
248
|
+
export type AIResolverNameV3_54_05 = 'ai:sendAgentMessage';
|
|
249
249
|
/**
|
|
250
250
|
* Name of the resolver function.
|
|
251
251
|
*/
|
|
252
|
-
export type AIResolverNameV3_54_06 = 'ai:
|
|
252
|
+
export type AIResolverNameV3_54_06 = 'ai:inspectAgent';
|
|
253
253
|
/**
|
|
254
254
|
* This interface was referenced by `ProjectSchemaJSONV3_54_0`'s JSON-Schema
|
|
255
255
|
* via the `definition` "dependencies".
|
|
@@ -364,7 +364,7 @@ export type StripMarkdownV3_54_0 = boolean;
|
|
|
364
364
|
* These steps are evaluated in order until a destination is found.
|
|
365
365
|
*/
|
|
366
366
|
export type AgentTransitionV3_54_0 = AgentTransitionImmediateV3_54_0 | AgentTransitionSuspendV3_54_0;
|
|
367
|
-
export type AgentStateSessionMemoryV3_54_01 =
|
|
367
|
+
export type AgentStateSessionMemoryV3_54_01 = AgentStateSessionMemoryAssignmentV3_54_0[];
|
|
368
368
|
export type GuardIDV3_54_0 = string;
|
|
369
369
|
export type VariablesV3_54_01 = AgentVariableV3_54_0[];
|
|
370
370
|
export type HistoryStrategyTransformV3_54_0 = HistoryStrategyTransformNoneV3_54_0 | HistoryStrategyTransformReplaceV3_54_0 | HistoryStrategyTransformSummarizeV3_54_0;
|
|
@@ -1507,10 +1507,11 @@ export interface UtilChunkResolverOptionsSemanticV3_54_0 {
|
|
|
1507
1507
|
*/
|
|
1508
1508
|
maxTokens?: number;
|
|
1509
1509
|
}
|
|
1510
|
-
export interface
|
|
1510
|
+
export interface AISendAgentMessageResolverV3_54_0 {
|
|
1511
1511
|
id?: string;
|
|
1512
1512
|
name: AIResolverNameV3_54_05;
|
|
1513
1513
|
agentName: string;
|
|
1514
|
+
inputName: string;
|
|
1514
1515
|
}
|
|
1515
1516
|
export interface AIInspectAgentResolverV3_54_0 {
|
|
1516
1517
|
id?: string;
|
|
@@ -1916,10 +1917,6 @@ export interface AgentTransitionImmediateV3_54_0 {
|
|
|
1916
1917
|
sessionMemory?: AgentStateSessionMemoryV3_54_01;
|
|
1917
1918
|
historyStrategy?: string;
|
|
1918
1919
|
}
|
|
1919
|
-
export interface AgentStateSessionMemoryAssignmentV3_54_01 {
|
|
1920
|
-
memoryPath?: string;
|
|
1921
|
-
expression: string;
|
|
1922
|
-
}
|
|
1923
1920
|
export interface AgentGuardV3_54_0 {
|
|
1924
1921
|
guardId: GuardIDV3_54_0;
|
|
1925
1922
|
}
|
|
@@ -74,7 +74,7 @@ export type ResolverV3_55_0 = BasicResolverV3_55_0 | ComposeResolverV3_55_0;
|
|
|
74
74
|
* This interface was referenced by `ProjectSchemaJSONV3_55_0`'s JSON-Schema
|
|
75
75
|
* via the `definition` "basicResolver".
|
|
76
76
|
*/
|
|
77
|
-
export type BasicResolverV3_55_0 = UtilResolverV3_55_0 | DelegateResolverV3_55_0 | TakeshapeResolverV3_55_0 | ShapedbResolverV3_55_0 | ShapedbResolverShapeNameNotRequiredV3_55_0 | GraphqlResolverV3_55_0 | RestResolverV3_55_0 | AwsLambdaResolverV3_55_0 | SalsifyResolverV3_55_0 | SyndigoResolverV3_55_0 | FunctionResolverV3_55_0 | AIGenerateTextResolverV3_55_0 | AIGeneratePropertyResolverV3_55_0 | AIEmbeddingResolverV3_55_0 | AIEmbeddingSearchResolverV3_55_0 | AIParseFileResolverV3_55_0 | ChunkResolverV3_55_0 |
|
|
77
|
+
export type BasicResolverV3_55_0 = UtilResolverV3_55_0 | DelegateResolverV3_55_0 | TakeshapeResolverV3_55_0 | ShapedbResolverV3_55_0 | ShapedbResolverShapeNameNotRequiredV3_55_0 | GraphqlResolverV3_55_0 | RestResolverV3_55_0 | AwsLambdaResolverV3_55_0 | SalsifyResolverV3_55_0 | SyndigoResolverV3_55_0 | FunctionResolverV3_55_0 | AIGenerateTextResolverV3_55_0 | AIGeneratePropertyResolverV3_55_0 | AIEmbeddingResolverV3_55_0 | AIEmbeddingSearchResolverV3_55_0 | AIParseFileResolverV3_55_0 | ChunkResolverV3_55_0 | AISendAgentMessageResolverV3_55_0 | AIInspectAgentResolverV3_55_0;
|
|
78
78
|
/**
|
|
79
79
|
* Name of the resolver function.
|
|
80
80
|
*/
|
|
@@ -245,11 +245,11 @@ export type UtilChunkResolverOptionsV3_55_0 = UtilChunkResolverOptionsCharacterC
|
|
|
245
245
|
/**
|
|
246
246
|
* Name of the resolver function.
|
|
247
247
|
*/
|
|
248
|
-
export type AIResolverNameV3_55_05 = 'ai:
|
|
248
|
+
export type AIResolverNameV3_55_05 = 'ai:sendAgentMessage';
|
|
249
249
|
/**
|
|
250
250
|
* Name of the resolver function.
|
|
251
251
|
*/
|
|
252
|
-
export type AIResolverNameV3_55_06 = 'ai:
|
|
252
|
+
export type AIResolverNameV3_55_06 = 'ai:inspectAgent';
|
|
253
253
|
/**
|
|
254
254
|
* This interface was referenced by `ProjectSchemaJSONV3_55_0`'s JSON-Schema
|
|
255
255
|
* via the `definition` "dependencies".
|
|
@@ -364,7 +364,7 @@ export type StripMarkdownV3_55_0 = boolean;
|
|
|
364
364
|
* These steps are evaluated in order until a destination is found.
|
|
365
365
|
*/
|
|
366
366
|
export type AgentTransitionV3_55_0 = AgentTransitionImmediateV3_55_0 | AgentTransitionSuspendV3_55_0;
|
|
367
|
-
export type AgentStateSessionMemoryV3_55_01 =
|
|
367
|
+
export type AgentStateSessionMemoryV3_55_01 = AgentStateSessionMemoryAssignmentV3_55_0[];
|
|
368
368
|
export type GuardIDV3_55_0 = string;
|
|
369
369
|
export type VariablesV3_55_01 = AgentVariableV3_55_0[];
|
|
370
370
|
export type HistoryStrategyTransformV3_55_0 = HistoryStrategyTransformNoneV3_55_0 | HistoryStrategyTransformReplaceV3_55_0 | HistoryStrategyTransformSummarizeV3_55_0;
|
|
@@ -1507,10 +1507,11 @@ export interface UtilChunkResolverOptionsSemanticV3_55_0 {
|
|
|
1507
1507
|
*/
|
|
1508
1508
|
maxTokens?: number;
|
|
1509
1509
|
}
|
|
1510
|
-
export interface
|
|
1510
|
+
export interface AISendAgentMessageResolverV3_55_0 {
|
|
1511
1511
|
id?: string;
|
|
1512
1512
|
name: AIResolverNameV3_55_05;
|
|
1513
1513
|
agentName: string;
|
|
1514
|
+
inputName: string;
|
|
1514
1515
|
}
|
|
1515
1516
|
export interface AIInspectAgentResolverV3_55_0 {
|
|
1516
1517
|
id?: string;
|
|
@@ -1916,10 +1917,6 @@ export interface AgentTransitionImmediateV3_55_0 {
|
|
|
1916
1917
|
sessionMemory?: AgentStateSessionMemoryV3_55_01;
|
|
1917
1918
|
historyStrategy?: string;
|
|
1918
1919
|
}
|
|
1919
|
-
export interface AgentStateSessionMemoryAssignmentV3_55_01 {
|
|
1920
|
-
memoryPath?: string;
|
|
1921
|
-
expression: string;
|
|
1922
|
-
}
|
|
1923
1920
|
export interface AgentGuardV3_55_0 {
|
|
1924
1921
|
guardId: GuardIDV3_55_0;
|
|
1925
1922
|
}
|