@inkeep/agents-core 0.60.0 → 0.62.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/dist/auth/auth-schema.d.ts +86 -86
- package/dist/auth/auth-validation-schemas.d.ts +154 -154
- package/dist/auth/init.js +44 -0
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/auth/wait-for-spicedb.d.ts +1 -0
- package/dist/auth/wait-for-spicedb.js +51 -0
- package/dist/client-exports.d.ts +3 -106
- package/dist/client-exports.js +2 -60
- package/dist/data-access/index.d.ts +4 -3
- package/dist/data-access/index.js +4 -3
- package/dist/data-access/manage/agentFull.js +10 -5
- package/dist/data-access/manage/agents.d.ts +47 -41
- package/dist/data-access/manage/agents.js +2 -0
- package/dist/data-access/manage/artifactComponents.d.ts +12 -12
- package/dist/data-access/manage/contextConfigs.d.ts +12 -12
- package/dist/data-access/manage/dataComponents.d.ts +4 -4
- package/dist/data-access/manage/functionTools.d.ts +14 -14
- package/dist/data-access/manage/projectFull.js +24 -3
- package/dist/data-access/manage/skills.d.ts +17 -17
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +27 -27
- package/dist/data-access/manage/subAgentRelations.d.ts +25 -25
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +30 -30
- package/dist/data-access/manage/subAgents.d.ts +30 -30
- package/dist/data-access/manage/tools.d.ts +27 -27
- package/dist/data-access/manage/triggers.d.ts +2 -2
- package/dist/data-access/runtime/apiKeys.d.ts +12 -12
- package/dist/data-access/runtime/apps.d.ts +54 -9
- package/dist/data-access/runtime/apps.js +15 -1
- package/dist/data-access/runtime/conversations.d.ts +25 -25
- package/dist/data-access/runtime/conversations.js +1 -0
- package/dist/data-access/runtime/ledgerArtifacts.d.ts +11 -2
- package/dist/data-access/runtime/ledgerArtifacts.js +12 -1
- package/dist/data-access/runtime/messages.d.ts +15 -15
- package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +3 -3
- package/dist/data-access/runtime/tasks.d.ts +6 -6
- package/dist/data-access/runtime/workflowExecutions.d.ts +25 -0
- package/dist/data-access/runtime/workflowExecutions.js +32 -0
- package/dist/db/manage/manage-schema.d.ts +495 -475
- package/dist/db/manage/manage-schema.js +1 -0
- package/dist/db/runtime/runtime-schema.d.ts +550 -335
- package/dist/db/runtime/runtime-schema.js +16 -2
- package/dist/index.d.ts +11 -9
- package/dist/index.js +9 -7
- package/dist/types/entities.d.ts +5 -2
- package/dist/types/index.d.ts +3 -3
- package/dist/types/utility.d.ts +9 -3
- package/dist/utils/conversations.d.ts +4 -1
- package/dist/utils/conversations.js +10 -1
- package/dist/utils/error.d.ts +51 -51
- package/dist/utils/index.d.ts +4 -3
- package/dist/utils/index.js +4 -3
- package/dist/utils/jwt-helpers.d.ts +7 -1
- package/dist/utils/jwt-helpers.js +11 -1
- package/dist/utils/validate-public-key.d.ts +10 -0
- package/dist/utils/validate-public-key.js +89 -0
- package/dist/validation/agentFull.js +0 -1
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +2 -2
- package/dist/validation/schemas.d.ts +3468 -2708
- package/dist/validation/schemas.js +104 -36
- package/drizzle/manage/0013_gorgeous_umar.sql +1 -0
- package/drizzle/manage/meta/0013_snapshot.json +3704 -0
- package/drizzle/manage/meta/_journal.json +7 -0
- package/drizzle/runtime/0026_graceful_scorpion.sql +15 -0
- package/drizzle/runtime/0027_seed-playground-app.sql +13 -0
- package/drizzle/runtime/meta/{0025_snapshot.json → 0026_snapshot.json} +114 -1
- package/drizzle/runtime/meta/0027_snapshot.json +4389 -0
- package/drizzle/runtime/meta/_journal.json +14 -0
- package/package.json +1 -1
|
@@ -10,33 +10,33 @@ import { PgColumn } from "drizzle-orm/pg-core";
|
|
|
10
10
|
declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
11
11
|
scopes: AgentScopeConfig;
|
|
12
12
|
}) => Promise<{
|
|
13
|
-
description: string | null;
|
|
14
13
|
name: string;
|
|
15
|
-
tenantId: string;
|
|
16
|
-
projectId: string;
|
|
17
14
|
id: string;
|
|
18
15
|
createdAt: string;
|
|
19
16
|
updatedAt: string;
|
|
17
|
+
description: string | null;
|
|
18
|
+
tenantId: string;
|
|
19
|
+
projectId: string;
|
|
20
20
|
models: {
|
|
21
21
|
base?: {
|
|
22
22
|
model?: string | undefined;
|
|
23
|
-
providerOptions?: Record<string,
|
|
23
|
+
providerOptions?: Record<string, unknown> | undefined;
|
|
24
24
|
} | undefined;
|
|
25
25
|
structuredOutput?: {
|
|
26
26
|
model?: string | undefined;
|
|
27
|
-
providerOptions?: Record<string,
|
|
27
|
+
providerOptions?: Record<string, unknown> | undefined;
|
|
28
28
|
} | undefined;
|
|
29
29
|
summarizer?: {
|
|
30
30
|
model?: string | undefined;
|
|
31
|
-
providerOptions?: Record<string,
|
|
31
|
+
providerOptions?: Record<string, unknown> | undefined;
|
|
32
32
|
} | undefined;
|
|
33
33
|
} | null;
|
|
34
34
|
stopWhen: {
|
|
35
35
|
transferCountIs?: number | undefined;
|
|
36
36
|
} | null;
|
|
37
|
-
prompt: string | null;
|
|
38
37
|
defaultSubAgentId: string | null;
|
|
39
38
|
contextConfigId: string | null;
|
|
39
|
+
prompt: string | null;
|
|
40
40
|
statusUpdates: {
|
|
41
41
|
enabled?: boolean | undefined;
|
|
42
42
|
numEvents?: number | undefined;
|
|
@@ -52,37 +52,38 @@ declare const getAgentById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
52
52
|
} | undefined;
|
|
53
53
|
}[] | undefined;
|
|
54
54
|
} | null;
|
|
55
|
+
executionMode: "classic" | "durable";
|
|
55
56
|
} | null>;
|
|
56
57
|
declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
57
58
|
scopes: AgentScopeConfig;
|
|
58
59
|
}) => Promise<{
|
|
59
|
-
description: string | null;
|
|
60
60
|
name: string;
|
|
61
|
-
tenantId: string;
|
|
62
|
-
projectId: string;
|
|
63
61
|
id: string;
|
|
64
62
|
createdAt: string;
|
|
65
63
|
updatedAt: string;
|
|
64
|
+
description: string | null;
|
|
65
|
+
tenantId: string;
|
|
66
|
+
projectId: string;
|
|
66
67
|
models: {
|
|
67
68
|
base?: {
|
|
68
69
|
model?: string | undefined;
|
|
69
|
-
providerOptions?: Record<string,
|
|
70
|
+
providerOptions?: Record<string, unknown> | undefined;
|
|
70
71
|
} | undefined;
|
|
71
72
|
structuredOutput?: {
|
|
72
73
|
model?: string | undefined;
|
|
73
|
-
providerOptions?: Record<string,
|
|
74
|
+
providerOptions?: Record<string, unknown> | undefined;
|
|
74
75
|
} | undefined;
|
|
75
76
|
summarizer?: {
|
|
76
77
|
model?: string | undefined;
|
|
77
|
-
providerOptions?: Record<string,
|
|
78
|
+
providerOptions?: Record<string, unknown> | undefined;
|
|
78
79
|
} | undefined;
|
|
79
80
|
} | null;
|
|
80
81
|
stopWhen: {
|
|
81
82
|
transferCountIs?: number | undefined;
|
|
82
83
|
} | null;
|
|
83
|
-
prompt: string | null;
|
|
84
84
|
defaultSubAgentId: string | null;
|
|
85
85
|
contextConfigId: string | null;
|
|
86
|
+
prompt: string | null;
|
|
86
87
|
statusUpdates: {
|
|
87
88
|
enabled?: boolean | undefined;
|
|
88
89
|
numEvents?: number | undefined;
|
|
@@ -98,66 +99,67 @@ declare const getAgentWithDefaultSubAgent: (db: AgentsManageDatabaseClient) => (
|
|
|
98
99
|
} | undefined;
|
|
99
100
|
}[] | undefined;
|
|
100
101
|
} | null;
|
|
102
|
+
executionMode: "classic" | "durable";
|
|
101
103
|
defaultSubAgent: {
|
|
102
|
-
description: string | null;
|
|
103
104
|
name: string;
|
|
104
|
-
tenantId: string;
|
|
105
|
-
projectId: string;
|
|
106
105
|
id: string;
|
|
107
106
|
createdAt: string;
|
|
108
107
|
updatedAt: string;
|
|
108
|
+
description: string | null;
|
|
109
|
+
tenantId: string;
|
|
110
|
+
projectId: string;
|
|
109
111
|
models: {
|
|
110
112
|
base?: {
|
|
111
113
|
model?: string | undefined;
|
|
112
|
-
providerOptions?: Record<string,
|
|
114
|
+
providerOptions?: Record<string, unknown> | undefined;
|
|
113
115
|
} | undefined;
|
|
114
116
|
structuredOutput?: {
|
|
115
117
|
model?: string | undefined;
|
|
116
|
-
providerOptions?: Record<string,
|
|
118
|
+
providerOptions?: Record<string, unknown> | undefined;
|
|
117
119
|
} | undefined;
|
|
118
120
|
summarizer?: {
|
|
119
121
|
model?: string | undefined;
|
|
120
|
-
providerOptions?: Record<string,
|
|
122
|
+
providerOptions?: Record<string, unknown> | undefined;
|
|
121
123
|
} | undefined;
|
|
122
124
|
} | null;
|
|
123
125
|
stopWhen: {
|
|
124
126
|
stepCountIs?: number | undefined;
|
|
125
127
|
} | null;
|
|
128
|
+
agentId: string;
|
|
126
129
|
prompt: string | null;
|
|
127
130
|
conversationHistoryConfig: ConversationHistoryConfig | null;
|
|
128
|
-
agentId: string;
|
|
129
131
|
} | null;
|
|
130
132
|
} | null>;
|
|
131
133
|
declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
132
134
|
scopes: ProjectScopeConfig;
|
|
133
135
|
}) => Promise<{
|
|
134
|
-
description: string | null;
|
|
135
136
|
name: string;
|
|
136
|
-
tenantId: string;
|
|
137
|
-
projectId: string;
|
|
138
137
|
id: string;
|
|
139
138
|
createdAt: string;
|
|
140
139
|
updatedAt: string;
|
|
140
|
+
description: string | null;
|
|
141
|
+
tenantId: string;
|
|
142
|
+
projectId: string;
|
|
141
143
|
models: {
|
|
142
144
|
base?: {
|
|
143
145
|
model?: string | undefined;
|
|
144
|
-
providerOptions?: Record<string,
|
|
146
|
+
providerOptions?: Record<string, unknown> | undefined;
|
|
145
147
|
} | undefined;
|
|
146
148
|
structuredOutput?: {
|
|
147
149
|
model?: string | undefined;
|
|
148
|
-
providerOptions?: Record<string,
|
|
150
|
+
providerOptions?: Record<string, unknown> | undefined;
|
|
149
151
|
} | undefined;
|
|
150
152
|
summarizer?: {
|
|
151
153
|
model?: string | undefined;
|
|
152
|
-
providerOptions?: Record<string,
|
|
154
|
+
providerOptions?: Record<string, unknown> | undefined;
|
|
153
155
|
} | undefined;
|
|
154
156
|
} | null;
|
|
155
157
|
stopWhen: {
|
|
156
158
|
transferCountIs?: number | undefined;
|
|
157
159
|
} | null;
|
|
158
|
-
prompt: string | null;
|
|
159
160
|
defaultSubAgentId: string | null;
|
|
160
161
|
contextConfigId: string | null;
|
|
162
|
+
prompt: string | null;
|
|
161
163
|
statusUpdates: {
|
|
162
164
|
enabled?: boolean | undefined;
|
|
163
165
|
numEvents?: number | undefined;
|
|
@@ -173,6 +175,7 @@ declare const listAgents: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
173
175
|
} | undefined;
|
|
174
176
|
}[] | undefined;
|
|
175
177
|
} | null;
|
|
178
|
+
executionMode: "classic" | "durable";
|
|
176
179
|
}[]>;
|
|
177
180
|
declare const listAgentsPaginated: (db: AgentsManageDatabaseClient) => (params: {
|
|
178
181
|
scopes: ProjectScopeConfig;
|
|
@@ -186,15 +189,15 @@ declare const listAgentsPaginated: (db: AgentsManageDatabaseClient) => (params:
|
|
|
186
189
|
models: {
|
|
187
190
|
base?: {
|
|
188
191
|
model?: string | undefined;
|
|
189
|
-
providerOptions?: Record<string,
|
|
192
|
+
providerOptions?: Record<string, unknown> | undefined;
|
|
190
193
|
} | undefined;
|
|
191
194
|
structuredOutput?: {
|
|
192
195
|
model?: string | undefined;
|
|
193
|
-
providerOptions?: Record<string,
|
|
196
|
+
providerOptions?: Record<string, unknown> | undefined;
|
|
194
197
|
} | undefined;
|
|
195
198
|
summarizer?: {
|
|
196
199
|
model?: string | undefined;
|
|
197
|
-
providerOptions?: Record<string,
|
|
200
|
+
providerOptions?: Record<string, unknown> | undefined;
|
|
198
201
|
} | undefined;
|
|
199
202
|
} | null;
|
|
200
203
|
statusUpdates: {
|
|
@@ -216,6 +219,7 @@ declare const listAgentsPaginated: (db: AgentsManageDatabaseClient) => (params:
|
|
|
216
219
|
stopWhen: {
|
|
217
220
|
transferCountIs?: number | undefined;
|
|
218
221
|
} | null;
|
|
222
|
+
executionMode: "classic" | "durable";
|
|
219
223
|
name: string;
|
|
220
224
|
description: string | null;
|
|
221
225
|
projectId: string;
|
|
@@ -247,33 +251,33 @@ declare function listAgentsAcrossProjectMainBranches(db: AgentsManageDatabaseCli
|
|
|
247
251
|
projectIds: string[];
|
|
248
252
|
}): Promise<AvailableAgentInfo[]>;
|
|
249
253
|
declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInsert) => Promise<{
|
|
250
|
-
description: string | null;
|
|
251
254
|
name: string;
|
|
252
|
-
tenantId: string;
|
|
253
|
-
projectId: string;
|
|
254
255
|
id: string;
|
|
255
256
|
createdAt: string;
|
|
256
257
|
updatedAt: string;
|
|
258
|
+
description: string | null;
|
|
259
|
+
tenantId: string;
|
|
260
|
+
projectId: string;
|
|
257
261
|
models: {
|
|
258
262
|
base?: {
|
|
259
263
|
model?: string | undefined;
|
|
260
|
-
providerOptions?: Record<string,
|
|
264
|
+
providerOptions?: Record<string, unknown> | undefined;
|
|
261
265
|
} | undefined;
|
|
262
266
|
structuredOutput?: {
|
|
263
267
|
model?: string | undefined;
|
|
264
|
-
providerOptions?: Record<string,
|
|
268
|
+
providerOptions?: Record<string, unknown> | undefined;
|
|
265
269
|
} | undefined;
|
|
266
270
|
summarizer?: {
|
|
267
271
|
model?: string | undefined;
|
|
268
|
-
providerOptions?: Record<string,
|
|
272
|
+
providerOptions?: Record<string, unknown> | undefined;
|
|
269
273
|
} | undefined;
|
|
270
274
|
} | null;
|
|
271
275
|
stopWhen: {
|
|
272
276
|
transferCountIs?: number | undefined;
|
|
273
277
|
} | null;
|
|
274
|
-
prompt: string | null;
|
|
275
278
|
defaultSubAgentId: string | null;
|
|
276
279
|
contextConfigId: string | null;
|
|
280
|
+
prompt: string | null;
|
|
277
281
|
statusUpdates: {
|
|
278
282
|
enabled?: boolean | undefined;
|
|
279
283
|
numEvents?: number | undefined;
|
|
@@ -289,6 +293,7 @@ declare const createAgent: (db: AgentsManageDatabaseClient) => (data: AgentInser
|
|
|
289
293
|
} | undefined;
|
|
290
294
|
}[] | undefined;
|
|
291
295
|
} | null;
|
|
296
|
+
executionMode: "classic" | "durable";
|
|
292
297
|
}>;
|
|
293
298
|
declare const updateAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
294
299
|
scopes: AgentScopeConfig;
|
|
@@ -301,15 +306,15 @@ declare const updateAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
301
306
|
models: {
|
|
302
307
|
base?: {
|
|
303
308
|
model?: string | undefined;
|
|
304
|
-
providerOptions?: Record<string,
|
|
309
|
+
providerOptions?: Record<string, unknown> | undefined;
|
|
305
310
|
} | undefined;
|
|
306
311
|
structuredOutput?: {
|
|
307
312
|
model?: string | undefined;
|
|
308
|
-
providerOptions?: Record<string,
|
|
313
|
+
providerOptions?: Record<string, unknown> | undefined;
|
|
309
314
|
} | undefined;
|
|
310
315
|
summarizer?: {
|
|
311
316
|
model?: string | undefined;
|
|
312
|
-
providerOptions?: Record<string,
|
|
317
|
+
providerOptions?: Record<string, unknown> | undefined;
|
|
313
318
|
} | undefined;
|
|
314
319
|
} | null;
|
|
315
320
|
statusUpdates: {
|
|
@@ -331,6 +336,7 @@ declare const updateAgent: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
331
336
|
stopWhen: {
|
|
332
337
|
transferCountIs?: number | undefined;
|
|
333
338
|
} | null;
|
|
339
|
+
executionMode: "classic" | "durable";
|
|
334
340
|
name: string;
|
|
335
341
|
description: string | null;
|
|
336
342
|
projectId: string;
|
|
@@ -86,6 +86,7 @@ const createAgent = (db) => async (data) => {
|
|
|
86
86
|
...data,
|
|
87
87
|
createdAt: now,
|
|
88
88
|
updatedAt: now,
|
|
89
|
+
executionMode: data.executionMode ?? "classic",
|
|
89
90
|
...data.description !== void 0 && { description: data.description },
|
|
90
91
|
...data.contextConfigId !== void 0 && { contextConfigId: data.contextConfigId },
|
|
91
92
|
...data.models !== void 0 && { models: data.models },
|
|
@@ -423,6 +424,7 @@ const getFullAgentDefinitionInternal = (db) => async ({ scopes: { tenantId, proj
|
|
|
423
424
|
if (agent.statusUpdates) result.statusUpdates = agent.statusUpdates;
|
|
424
425
|
if (agent.prompt) result.prompt = agent.prompt;
|
|
425
426
|
if (agent.stopWhen) result.stopWhen = agent.stopWhen;
|
|
427
|
+
if (agent.executionMode) result.executionMode = agent.executionMode;
|
|
426
428
|
if (contextConfig) {
|
|
427
429
|
const { id, headersSchema, contextVariables } = contextConfig;
|
|
428
430
|
result.contextConfig = {
|
|
@@ -9,11 +9,13 @@ declare const getArtifactComponentById: (db: AgentsManageDatabaseClient) => (par
|
|
|
9
9
|
scopes: ProjectScopeConfig;
|
|
10
10
|
id: string;
|
|
11
11
|
}) => Promise<{
|
|
12
|
-
description: string | null;
|
|
13
12
|
name: string;
|
|
13
|
+
id: string;
|
|
14
|
+
createdAt: string;
|
|
15
|
+
updatedAt: string;
|
|
16
|
+
description: string | null;
|
|
14
17
|
tenantId: string;
|
|
15
18
|
projectId: string;
|
|
16
|
-
id: string;
|
|
17
19
|
props: {
|
|
18
20
|
[x: string]: unknown;
|
|
19
21
|
type: "object";
|
|
@@ -26,8 +28,6 @@ declare const getArtifactComponentById: (db: AgentsManageDatabaseClient) => (par
|
|
|
26
28
|
component: string;
|
|
27
29
|
mockData: Record<string, unknown>;
|
|
28
30
|
} | null;
|
|
29
|
-
createdAt: string;
|
|
30
|
-
updatedAt: string;
|
|
31
31
|
} | undefined>;
|
|
32
32
|
declare const listArtifactComponents: (db: AgentsManageDatabaseClient) => (params: {
|
|
33
33
|
scopes: ProjectScopeConfig;
|
|
@@ -65,11 +65,13 @@ declare const listArtifactComponentsPaginated: (db: AgentsManageDatabaseClient)
|
|
|
65
65
|
};
|
|
66
66
|
}>;
|
|
67
67
|
declare const createArtifactComponent: (db: AgentsManageDatabaseClient) => (params: ArtifactComponentInsert) => Promise<{
|
|
68
|
-
description: string | null;
|
|
69
68
|
name: string;
|
|
69
|
+
id: string;
|
|
70
|
+
createdAt: string;
|
|
71
|
+
updatedAt: string;
|
|
72
|
+
description: string | null;
|
|
70
73
|
tenantId: string;
|
|
71
74
|
projectId: string;
|
|
72
|
-
id: string;
|
|
73
75
|
props: {
|
|
74
76
|
[x: string]: unknown;
|
|
75
77
|
type: "object";
|
|
@@ -82,8 +84,6 @@ declare const createArtifactComponent: (db: AgentsManageDatabaseClient) => (para
|
|
|
82
84
|
component: string;
|
|
83
85
|
mockData: Record<string, unknown>;
|
|
84
86
|
} | null;
|
|
85
|
-
createdAt: string;
|
|
86
|
-
updatedAt: string;
|
|
87
87
|
}>;
|
|
88
88
|
declare const updateArtifactComponent: (db: AgentsManageDatabaseClient) => (params: {
|
|
89
89
|
scopes: ProjectScopeConfig;
|
|
@@ -141,11 +141,11 @@ declare const associateArtifactComponentWithAgent: (db: AgentsManageDatabaseClie
|
|
|
141
141
|
scopes: SubAgentScopeConfig;
|
|
142
142
|
artifactComponentId: string;
|
|
143
143
|
}) => Promise<{
|
|
144
|
+
id: string;
|
|
145
|
+
createdAt: string;
|
|
144
146
|
tenantId: string;
|
|
145
147
|
projectId: string;
|
|
146
148
|
subAgentId: string;
|
|
147
|
-
id: string;
|
|
148
|
-
createdAt: string;
|
|
149
149
|
agentId: string;
|
|
150
150
|
artifactComponentId: string;
|
|
151
151
|
}>;
|
|
@@ -184,11 +184,11 @@ declare const upsertAgentArtifactComponentRelation: (db: AgentsManageDatabaseCli
|
|
|
184
184
|
scopes: SubAgentScopeConfig;
|
|
185
185
|
artifactComponentId: string;
|
|
186
186
|
}) => Promise<{
|
|
187
|
+
id: string;
|
|
188
|
+
createdAt: string;
|
|
187
189
|
tenantId: string;
|
|
188
190
|
projectId: string;
|
|
189
191
|
subAgentId: string;
|
|
190
|
-
id: string;
|
|
191
|
-
createdAt: string;
|
|
192
192
|
agentId: string;
|
|
193
193
|
artifactComponentId: string;
|
|
194
194
|
} | null>;
|
|
@@ -9,26 +9,26 @@ declare const getContextConfigById: (db: AgentsManageDatabaseClient) => (params:
|
|
|
9
9
|
scopes: AgentScopeConfig;
|
|
10
10
|
id: string;
|
|
11
11
|
}) => Promise<{
|
|
12
|
-
tenantId: string;
|
|
13
|
-
projectId: string;
|
|
14
12
|
id: string;
|
|
15
13
|
createdAt: string;
|
|
16
14
|
updatedAt: string;
|
|
17
|
-
|
|
15
|
+
tenantId: string;
|
|
16
|
+
projectId: string;
|
|
18
17
|
headersSchema: unknown;
|
|
19
18
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
19
|
+
agentId: string;
|
|
20
20
|
} | undefined>;
|
|
21
21
|
declare const listContextConfigs: (db: AgentsManageDatabaseClient) => (params: {
|
|
22
22
|
scopes: AgentScopeConfig;
|
|
23
23
|
}) => Promise<{
|
|
24
|
-
tenantId: string;
|
|
25
|
-
projectId: string;
|
|
26
24
|
id: string;
|
|
27
25
|
createdAt: string;
|
|
28
26
|
updatedAt: string;
|
|
29
|
-
|
|
27
|
+
tenantId: string;
|
|
28
|
+
projectId: string;
|
|
30
29
|
headersSchema: unknown;
|
|
31
30
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
31
|
+
agentId: string;
|
|
32
32
|
}[]>;
|
|
33
33
|
declare const listContextConfigsPaginated: (db: AgentsManageDatabaseClient) => (params: {
|
|
34
34
|
scopes: AgentScopeConfig;
|
|
@@ -43,14 +43,14 @@ declare const listContextConfigsPaginated: (db: AgentsManageDatabaseClient) => (
|
|
|
43
43
|
};
|
|
44
44
|
}>;
|
|
45
45
|
declare const createContextConfig: (db: AgentsManageDatabaseClient) => (params: ContextConfigInsert) => Promise<{
|
|
46
|
-
tenantId: string;
|
|
47
|
-
projectId: string;
|
|
48
46
|
id: string;
|
|
49
47
|
createdAt: string;
|
|
50
48
|
updatedAt: string;
|
|
51
|
-
|
|
49
|
+
tenantId: string;
|
|
50
|
+
projectId: string;
|
|
52
51
|
headersSchema: unknown;
|
|
53
52
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
53
|
+
agentId: string;
|
|
54
54
|
}>;
|
|
55
55
|
declare const updateContextConfig: (db: AgentsManageDatabaseClient) => (params: {
|
|
56
56
|
scopes: AgentScopeConfig;
|
|
@@ -83,14 +83,14 @@ declare const countContextConfigs: (db: AgentsManageDatabaseClient) => (params:
|
|
|
83
83
|
declare const upsertContextConfig: (db: AgentsManageDatabaseClient) => (params: {
|
|
84
84
|
data: ContextConfigInsert;
|
|
85
85
|
}) => Promise<{
|
|
86
|
-
tenantId: string;
|
|
87
|
-
projectId: string;
|
|
88
86
|
id: string;
|
|
89
87
|
createdAt: string;
|
|
90
88
|
updatedAt: string;
|
|
91
|
-
|
|
89
|
+
tenantId: string;
|
|
90
|
+
projectId: string;
|
|
92
91
|
headersSchema: unknown;
|
|
93
92
|
contextVariables: Record<string, ContextFetchDefinition> | null;
|
|
93
|
+
agentId: string;
|
|
94
94
|
}>;
|
|
95
95
|
//#endregion
|
|
96
96
|
export { countContextConfigs, createContextConfig, deleteContextConfig, getContextConfigById, hasContextConfig, listContextConfigs, listContextConfigsPaginated, updateContextConfig, upsertContextConfig };
|
|
@@ -65,11 +65,11 @@ declare const associateDataComponentWithAgent: (db: AgentsManageDatabaseClient)
|
|
|
65
65
|
scopes: SubAgentScopeConfig;
|
|
66
66
|
dataComponentId: string;
|
|
67
67
|
}) => Promise<{
|
|
68
|
+
id: string;
|
|
69
|
+
createdAt: string;
|
|
68
70
|
tenantId: string;
|
|
69
71
|
projectId: string;
|
|
70
72
|
subAgentId: string;
|
|
71
|
-
id: string;
|
|
72
|
-
createdAt: string;
|
|
73
73
|
agentId: string;
|
|
74
74
|
dataComponentId: string;
|
|
75
75
|
}>;
|
|
@@ -107,11 +107,11 @@ declare const upsertAgentDataComponentRelation: (db: AgentsManageDatabaseClient)
|
|
|
107
107
|
scopes: SubAgentScopeConfig;
|
|
108
108
|
dataComponentId: string;
|
|
109
109
|
}) => Promise<{
|
|
110
|
+
id: string;
|
|
111
|
+
createdAt: string;
|
|
110
112
|
tenantId: string;
|
|
111
113
|
projectId: string;
|
|
112
114
|
subAgentId: string;
|
|
113
|
-
id: string;
|
|
114
|
-
createdAt: string;
|
|
115
115
|
agentId: string;
|
|
116
116
|
dataComponentId: string;
|
|
117
117
|
} | null>;
|
|
@@ -53,13 +53,13 @@ declare const createFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
53
53
|
data: FunctionToolApiInsert;
|
|
54
54
|
scopes: AgentScopeConfig;
|
|
55
55
|
}) => Promise<{
|
|
56
|
-
description: string | null;
|
|
57
56
|
name: string;
|
|
58
|
-
tenantId: string;
|
|
59
|
-
projectId: string;
|
|
60
57
|
id: string;
|
|
61
58
|
createdAt: string;
|
|
62
59
|
updatedAt: string;
|
|
60
|
+
description: string | null;
|
|
61
|
+
tenantId: string;
|
|
62
|
+
projectId: string;
|
|
63
63
|
agentId: string;
|
|
64
64
|
functionId: string;
|
|
65
65
|
}>;
|
|
@@ -95,13 +95,13 @@ declare const upsertFunctionTool: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
95
95
|
data: FunctionToolApiInsert;
|
|
96
96
|
scopes: AgentScopeConfig;
|
|
97
97
|
}) => Promise<{
|
|
98
|
-
description: string | null;
|
|
99
98
|
name: string;
|
|
100
|
-
tenantId: string;
|
|
101
|
-
projectId: string;
|
|
102
99
|
id: string;
|
|
103
100
|
createdAt: string;
|
|
104
101
|
updatedAt: string;
|
|
102
|
+
description: string | null;
|
|
103
|
+
tenantId: string;
|
|
104
|
+
projectId: string;
|
|
105
105
|
agentId: string;
|
|
106
106
|
functionId: string;
|
|
107
107
|
}>;
|
|
@@ -157,17 +157,17 @@ declare const addFunctionToolToSubAgent: (db: AgentsManageDatabaseClient) => (pa
|
|
|
157
157
|
needsApproval?: boolean;
|
|
158
158
|
}> | null;
|
|
159
159
|
}) => Promise<{
|
|
160
|
-
tenantId: string;
|
|
161
|
-
projectId: string;
|
|
162
|
-
subAgentId: string;
|
|
163
160
|
id: string;
|
|
164
161
|
createdAt: string;
|
|
165
162
|
updatedAt: string;
|
|
163
|
+
tenantId: string;
|
|
164
|
+
projectId: string;
|
|
165
|
+
subAgentId: string;
|
|
166
166
|
agentId: string;
|
|
167
|
-
functionToolId: string;
|
|
168
167
|
toolPolicies: Record<string, {
|
|
169
168
|
needsApproval?: boolean;
|
|
170
169
|
}> | null;
|
|
170
|
+
functionToolId: string;
|
|
171
171
|
}>;
|
|
172
172
|
/**
|
|
173
173
|
* Update an agent-function tool relation
|
|
@@ -222,17 +222,17 @@ declare const associateFunctionToolWithSubAgent: (db: AgentsManageDatabaseClient
|
|
|
222
222
|
needsApproval?: boolean;
|
|
223
223
|
}> | null;
|
|
224
224
|
}) => Promise<{
|
|
225
|
-
tenantId: string;
|
|
226
|
-
projectId: string;
|
|
227
|
-
subAgentId: string;
|
|
228
225
|
id: string;
|
|
229
226
|
createdAt: string;
|
|
230
227
|
updatedAt: string;
|
|
228
|
+
tenantId: string;
|
|
229
|
+
projectId: string;
|
|
230
|
+
subAgentId: string;
|
|
231
231
|
agentId: string;
|
|
232
|
-
functionToolId: string;
|
|
233
232
|
toolPolicies: Record<string, {
|
|
234
233
|
needsApproval?: boolean;
|
|
235
234
|
}> | null;
|
|
235
|
+
functionToolId: string;
|
|
236
236
|
}>;
|
|
237
237
|
//#endregion
|
|
238
238
|
export { addFunctionToolToSubAgent, associateFunctionToolWithSubAgent, createFunctionTool, deleteFunctionTool, getFunctionToolById, getFunctionToolsForSubAgent, getSubAgentsUsingFunctionTool, isFunctionToolAssociatedWithSubAgent, listFunctionTools, removeFunctionToolFromSubAgent, updateFunctionTool, updateSubAgentFunctionToolRelation, upsertFunctionTool, upsertSubAgentFunctionToolRelation };
|
|
@@ -326,7 +326,14 @@ const createFullProjectServerSide = (db, logger = defaultLogger) => async (param
|
|
|
326
326
|
throw error;
|
|
327
327
|
}
|
|
328
328
|
});
|
|
329
|
-
await Promise.
|
|
329
|
+
const phase1Errors = (await Promise.allSettled(agentPromises)).filter((r) => r.status === "rejected").map((r) => r.reason);
|
|
330
|
+
if (phase1Errors.length > 0) {
|
|
331
|
+
logger.error({
|
|
332
|
+
projectId: typed.id,
|
|
333
|
+
errorCount: phase1Errors.length
|
|
334
|
+
}, `Some agents failed to create in phase 1: ${phase1Errors.join(", ")}`);
|
|
335
|
+
throw phase1Errors[0];
|
|
336
|
+
}
|
|
330
337
|
logger.info({
|
|
331
338
|
projectId: typed.id,
|
|
332
339
|
agentCount: Object.keys(typed.agents).length
|
|
@@ -362,7 +369,14 @@ const createFullProjectServerSide = (db, logger = defaultLogger) => async (param
|
|
|
362
369
|
throw error;
|
|
363
370
|
}
|
|
364
371
|
});
|
|
365
|
-
await Promise.
|
|
372
|
+
const phase2Errors = (await Promise.allSettled(updatePromises)).filter((r) => r.status === "rejected").map((r) => r.reason);
|
|
373
|
+
if (phase2Errors.length > 0) {
|
|
374
|
+
logger.error({
|
|
375
|
+
projectId: typed.id,
|
|
376
|
+
errorCount: phase2Errors.length
|
|
377
|
+
}, `Some agents failed to add sub-agents in phase 2: ${phase2Errors.join(", ")}`);
|
|
378
|
+
throw phase2Errors[0];
|
|
379
|
+
}
|
|
366
380
|
logger.info({
|
|
367
381
|
projectId: typed.id,
|
|
368
382
|
agentCount: Object.keys(typed.agents).length
|
|
@@ -894,7 +908,14 @@ const updateFullProjectServerSide = (db, logger = defaultLogger) => async (param
|
|
|
894
908
|
throw error;
|
|
895
909
|
}
|
|
896
910
|
});
|
|
897
|
-
await Promise.
|
|
911
|
+
const agentErrors = (await Promise.allSettled(agentPromises)).filter((r) => r.status === "rejected").map((r) => r.reason);
|
|
912
|
+
if (agentErrors.length > 0) {
|
|
913
|
+
logger.error({
|
|
914
|
+
projectId: typed.id,
|
|
915
|
+
errorCount: agentErrors.length
|
|
916
|
+
}, `Some agents failed to update in project: ${agentErrors.join(", ")}`);
|
|
917
|
+
throw agentErrors[0];
|
|
918
|
+
}
|
|
898
919
|
logger.info({
|
|
899
920
|
projectId: typed.id,
|
|
900
921
|
agentCount: Object.keys(typed.agents).length
|
|
@@ -8,15 +8,15 @@ declare const getSkillById: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
8
8
|
scopes: ProjectScopeConfig;
|
|
9
9
|
skillId: string;
|
|
10
10
|
}) => Promise<{
|
|
11
|
-
|
|
11
|
+
metadata: Record<string, string> | null;
|
|
12
12
|
name: string;
|
|
13
|
-
content: string;
|
|
14
|
-
tenantId: string;
|
|
15
|
-
projectId: string;
|
|
16
13
|
id: string;
|
|
17
14
|
createdAt: string;
|
|
18
15
|
updatedAt: string;
|
|
19
|
-
|
|
16
|
+
description: string;
|
|
17
|
+
content: string;
|
|
18
|
+
tenantId: string;
|
|
19
|
+
projectId: string;
|
|
20
20
|
} | null>;
|
|
21
21
|
declare const listSkills: (db: AgentsManageDatabaseClient) => (params: {
|
|
22
22
|
scopes: ProjectScopeConfig;
|
|
@@ -41,26 +41,26 @@ declare const listSkills: (db: AgentsManageDatabaseClient) => (params: {
|
|
|
41
41
|
};
|
|
42
42
|
}>;
|
|
43
43
|
declare const createSkill: (db: AgentsManageDatabaseClient) => (data: SkillInsert) => Promise<{
|
|
44
|
-
|
|
44
|
+
metadata: Record<string, string> | null;
|
|
45
45
|
name: string;
|
|
46
|
-
content: string;
|
|
47
|
-
tenantId: string;
|
|
48
|
-
projectId: string;
|
|
49
46
|
id: string;
|
|
50
47
|
createdAt: string;
|
|
51
48
|
updatedAt: string;
|
|
52
|
-
metadata: Record<string, string> | null;
|
|
53
|
-
}>;
|
|
54
|
-
declare const upsertSkill: (db: AgentsManageDatabaseClient) => (data: SkillInsert) => Promise<{
|
|
55
49
|
description: string;
|
|
56
|
-
name: string;
|
|
57
50
|
content: string;
|
|
58
51
|
tenantId: string;
|
|
59
52
|
projectId: string;
|
|
53
|
+
}>;
|
|
54
|
+
declare const upsertSkill: (db: AgentsManageDatabaseClient) => (data: SkillInsert) => Promise<{
|
|
55
|
+
metadata: Record<string, string> | null;
|
|
56
|
+
name: string;
|
|
60
57
|
id: string;
|
|
61
58
|
createdAt: string;
|
|
62
59
|
updatedAt: string;
|
|
63
|
-
|
|
60
|
+
description: string;
|
|
61
|
+
content: string;
|
|
62
|
+
tenantId: string;
|
|
63
|
+
projectId: string;
|
|
64
64
|
}>;
|
|
65
65
|
declare const updateSkill: (db: AgentsManageDatabaseClient) => (params: {
|
|
66
66
|
scopes: ProjectScopeConfig;
|
|
@@ -91,12 +91,12 @@ declare const upsertSubAgentSkill: (db: AgentsManageDatabaseClient) => (params:
|
|
|
91
91
|
index: number;
|
|
92
92
|
alwaysLoaded?: boolean;
|
|
93
93
|
}) => Promise<{
|
|
94
|
-
tenantId: string;
|
|
95
|
-
projectId: string;
|
|
96
|
-
subAgentId: string;
|
|
97
94
|
id: string;
|
|
98
95
|
createdAt: string;
|
|
99
96
|
updatedAt: string;
|
|
97
|
+
tenantId: string;
|
|
98
|
+
projectId: string;
|
|
99
|
+
subAgentId: string;
|
|
100
100
|
agentId: string;
|
|
101
101
|
skillId: string;
|
|
102
102
|
index: number;
|