@inkeep/agents-core 0.16.3 → 0.18.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 +2 -2
- package/dist/{chunk-72MXE5SX.js → chunk-E4SFK6AI.js} +143 -157
- package/dist/{chunk-VPJ6Z5QZ.js → chunk-ID4CFGVF.js} +202 -131
- package/dist/chunk-JTHQYGCX.js +173 -0
- package/dist/chunk-TCLX6C3C.js +271 -0
- package/dist/client-exports.cjs +622 -272
- package/dist/client-exports.d.cts +6 -5
- package/dist/client-exports.d.ts +6 -5
- package/dist/client-exports.js +5 -4
- package/dist/db/schema.cjs +201 -130
- package/dist/db/schema.d.cts +2 -2
- package/dist/db/schema.d.ts +2 -2
- package/dist/db/schema.js +1 -1
- package/dist/index.cjs +2734 -1831
- package/dist/index.d.cts +1667 -1550
- package/dist/index.d.ts +1667 -1550
- package/dist/index.js +1880 -1394
- package/dist/{schema-BQk_FMBV.d.ts → schema-Bjy5TkFv.d.cts} +473 -172
- package/dist/{schema-Ct2NlO81.d.cts → schema-CfWbqju2.d.ts} +473 -172
- package/dist/signoz-queries-CifqdbnO.d.cts +269 -0
- package/dist/signoz-queries-CifqdbnO.d.ts +269 -0
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/{utility-s9c5CVOe.d.cts → utility-Fxoh7s82.d.cts} +585 -384
- package/dist/{utility-s9c5CVOe.d.ts → utility-Fxoh7s82.d.ts} +585 -384
- package/dist/validation/index.cjs +429 -325
- package/dist/validation/index.d.cts +76 -4
- package/dist/validation/index.d.ts +76 -4
- package/dist/validation/index.js +2 -2
- package/drizzle/0005_wide_shriek.sql +127 -0
- package/drizzle/0006_damp_lenny_balinger.sql +52 -0
- package/drizzle/meta/0005_snapshot.json +2558 -0
- package/drizzle/meta/0006_snapshot.json +2751 -0
- package/drizzle/meta/_journal.json +14 -0
- package/package.json +1 -1
- package/dist/chunk-N43VFJD3.js +0 -134
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as drizzle_orm from 'drizzle-orm';
|
|
2
2
|
import * as drizzle_orm_sqlite_core from 'drizzle-orm/sqlite-core';
|
|
3
|
-
import { l as ContextFetchDefinition, C as ConversationHistoryConfig, T as TaskMetadataConfig, m as ToolMcpConfig, n as ToolServerCapabilities, o as ConversationMetadata, p as MessageContent, q as MessageMetadata, P as Part } from './utility-
|
|
3
|
+
import { l as ContextFetchDefinition, C as ConversationHistoryConfig, T as TaskMetadataConfig, m as ToolMcpConfig, n as ToolServerCapabilities, o as ConversationMetadata, p as MessageContent, q as MessageMetadata, P as Part } from './utility-Fxoh7s82.cjs';
|
|
4
4
|
|
|
5
5
|
declare const projects: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
6
6
|
name: "projects";
|
|
@@ -302,8 +302,8 @@ declare const agentGraph: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
302
302
|
}, {}, {
|
|
303
303
|
length: number | undefined;
|
|
304
304
|
}>;
|
|
305
|
-
|
|
306
|
-
name: "
|
|
305
|
+
defaultSubAgentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
306
|
+
name: "default_sub_agent_id";
|
|
307
307
|
tableName: "agent_graph";
|
|
308
308
|
dataType: "string";
|
|
309
309
|
columnType: "SQLiteText";
|
|
@@ -945,13 +945,13 @@ declare const contextCache: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
945
945
|
};
|
|
946
946
|
dialect: "sqlite";
|
|
947
947
|
}>;
|
|
948
|
-
declare const
|
|
949
|
-
name: "
|
|
948
|
+
declare const subAgents: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
949
|
+
name: "sub_agents";
|
|
950
950
|
schema: undefined;
|
|
951
951
|
columns: {
|
|
952
952
|
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
953
953
|
name: "created_at";
|
|
954
|
-
tableName: "
|
|
954
|
+
tableName: "sub_agents";
|
|
955
955
|
dataType: "string";
|
|
956
956
|
columnType: "SQLiteText";
|
|
957
957
|
data: string;
|
|
@@ -970,7 +970,7 @@ declare const agents: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
970
970
|
}>;
|
|
971
971
|
updatedAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
972
972
|
name: "updated_at";
|
|
973
|
-
tableName: "
|
|
973
|
+
tableName: "sub_agents";
|
|
974
974
|
dataType: "string";
|
|
975
975
|
columnType: "SQLiteText";
|
|
976
976
|
data: string;
|
|
@@ -989,7 +989,7 @@ declare const agents: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
989
989
|
}>;
|
|
990
990
|
prompt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
991
991
|
name: "prompt";
|
|
992
|
-
tableName: "
|
|
992
|
+
tableName: "sub_agents";
|
|
993
993
|
dataType: "string";
|
|
994
994
|
columnType: "SQLiteText";
|
|
995
995
|
data: string;
|
|
@@ -1008,7 +1008,7 @@ declare const agents: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
1008
1008
|
}>;
|
|
1009
1009
|
conversationHistoryConfig: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1010
1010
|
name: "conversation_history_config";
|
|
1011
|
-
tableName: "
|
|
1011
|
+
tableName: "sub_agents";
|
|
1012
1012
|
dataType: "json";
|
|
1013
1013
|
columnType: "SQLiteTextJson";
|
|
1014
1014
|
data: ConversationHistoryConfig;
|
|
@@ -1027,7 +1027,7 @@ declare const agents: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
1027
1027
|
}>;
|
|
1028
1028
|
models: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1029
1029
|
name: "models";
|
|
1030
|
-
tableName: "
|
|
1030
|
+
tableName: "sub_agents";
|
|
1031
1031
|
dataType: "json";
|
|
1032
1032
|
columnType: "SQLiteTextJson";
|
|
1033
1033
|
data: {
|
|
@@ -1072,7 +1072,7 @@ declare const agents: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
1072
1072
|
}>;
|
|
1073
1073
|
stopWhen: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1074
1074
|
name: "stop_when";
|
|
1075
|
-
tableName: "
|
|
1075
|
+
tableName: "sub_agents";
|
|
1076
1076
|
dataType: "json";
|
|
1077
1077
|
columnType: "SQLiteTextJson";
|
|
1078
1078
|
data: {
|
|
@@ -1095,7 +1095,7 @@ declare const agents: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
1095
1095
|
}>;
|
|
1096
1096
|
name: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1097
1097
|
name: "name";
|
|
1098
|
-
tableName: "
|
|
1098
|
+
tableName: "sub_agents";
|
|
1099
1099
|
dataType: "string";
|
|
1100
1100
|
columnType: "SQLiteText";
|
|
1101
1101
|
data: string;
|
|
@@ -1114,7 +1114,7 @@ declare const agents: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
1114
1114
|
}>;
|
|
1115
1115
|
description: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1116
1116
|
name: "description";
|
|
1117
|
-
tableName: "
|
|
1117
|
+
tableName: "sub_agents";
|
|
1118
1118
|
dataType: "string";
|
|
1119
1119
|
columnType: "SQLiteText";
|
|
1120
1120
|
data: string;
|
|
@@ -1133,7 +1133,7 @@ declare const agents: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
1133
1133
|
}>;
|
|
1134
1134
|
graphId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1135
1135
|
name: "graph_id";
|
|
1136
|
-
tableName: "
|
|
1136
|
+
tableName: "sub_agents";
|
|
1137
1137
|
dataType: "string";
|
|
1138
1138
|
columnType: "SQLiteText";
|
|
1139
1139
|
data: string;
|
|
@@ -1152,7 +1152,7 @@ declare const agents: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
1152
1152
|
}>;
|
|
1153
1153
|
projectId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1154
1154
|
name: "project_id";
|
|
1155
|
-
tableName: "
|
|
1155
|
+
tableName: "sub_agents";
|
|
1156
1156
|
dataType: "string";
|
|
1157
1157
|
columnType: "SQLiteText";
|
|
1158
1158
|
data: string;
|
|
@@ -1171,7 +1171,7 @@ declare const agents: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
1171
1171
|
}>;
|
|
1172
1172
|
tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1173
1173
|
name: "tenant_id";
|
|
1174
|
-
tableName: "
|
|
1174
|
+
tableName: "sub_agents";
|
|
1175
1175
|
dataType: "string";
|
|
1176
1176
|
columnType: "SQLiteText";
|
|
1177
1177
|
data: string;
|
|
@@ -1190,7 +1190,7 @@ declare const agents: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
1190
1190
|
}>;
|
|
1191
1191
|
id: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1192
1192
|
name: "id";
|
|
1193
|
-
tableName: "
|
|
1193
|
+
tableName: "sub_agents";
|
|
1194
1194
|
dataType: "string";
|
|
1195
1195
|
columnType: "SQLiteText";
|
|
1196
1196
|
data: string;
|
|
@@ -1210,13 +1210,13 @@ declare const agents: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
1210
1210
|
};
|
|
1211
1211
|
dialect: "sqlite";
|
|
1212
1212
|
}>;
|
|
1213
|
-
declare const
|
|
1214
|
-
name: "
|
|
1213
|
+
declare const subAgentRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
1214
|
+
name: "sub_agent_relations";
|
|
1215
1215
|
schema: undefined;
|
|
1216
1216
|
columns: {
|
|
1217
1217
|
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1218
1218
|
name: "created_at";
|
|
1219
|
-
tableName: "
|
|
1219
|
+
tableName: "sub_agent_relations";
|
|
1220
1220
|
dataType: "string";
|
|
1221
1221
|
columnType: "SQLiteText";
|
|
1222
1222
|
data: string;
|
|
@@ -1235,7 +1235,7 @@ declare const agentRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
1235
1235
|
}>;
|
|
1236
1236
|
updatedAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1237
1237
|
name: "updated_at";
|
|
1238
|
-
tableName: "
|
|
1238
|
+
tableName: "sub_agent_relations";
|
|
1239
1239
|
dataType: "string";
|
|
1240
1240
|
columnType: "SQLiteText";
|
|
1241
1241
|
data: string;
|
|
@@ -1252,9 +1252,9 @@ declare const agentRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
1252
1252
|
}, {}, {
|
|
1253
1253
|
length: number | undefined;
|
|
1254
1254
|
}>;
|
|
1255
|
-
|
|
1256
|
-
name: "
|
|
1257
|
-
tableName: "
|
|
1255
|
+
sourceSubAgentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1256
|
+
name: "source_sub_agent_id";
|
|
1257
|
+
tableName: "sub_agent_relations";
|
|
1258
1258
|
dataType: "string";
|
|
1259
1259
|
columnType: "SQLiteText";
|
|
1260
1260
|
data: string;
|
|
@@ -1271,9 +1271,9 @@ declare const agentRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
1271
1271
|
}, {}, {
|
|
1272
1272
|
length: number | undefined;
|
|
1273
1273
|
}>;
|
|
1274
|
-
|
|
1275
|
-
name: "
|
|
1276
|
-
tableName: "
|
|
1274
|
+
targetSubAgentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1275
|
+
name: "target_sub_agent_id";
|
|
1276
|
+
tableName: "sub_agent_relations";
|
|
1277
1277
|
dataType: "string";
|
|
1278
1278
|
columnType: "SQLiteText";
|
|
1279
1279
|
data: string;
|
|
@@ -1290,9 +1290,9 @@ declare const agentRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
1290
1290
|
}, {}, {
|
|
1291
1291
|
length: number | undefined;
|
|
1292
1292
|
}>;
|
|
1293
|
-
|
|
1294
|
-
name: "
|
|
1295
|
-
tableName: "
|
|
1293
|
+
externalSubAgentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1294
|
+
name: "external_sub_agent_id";
|
|
1295
|
+
tableName: "sub_agent_relations";
|
|
1296
1296
|
dataType: "string";
|
|
1297
1297
|
columnType: "SQLiteText";
|
|
1298
1298
|
data: string;
|
|
@@ -1311,7 +1311,7 @@ declare const agentRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
1311
1311
|
}>;
|
|
1312
1312
|
relationType: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1313
1313
|
name: "relation_type";
|
|
1314
|
-
tableName: "
|
|
1314
|
+
tableName: "sub_agent_relations";
|
|
1315
1315
|
dataType: "string";
|
|
1316
1316
|
columnType: "SQLiteText";
|
|
1317
1317
|
data: string;
|
|
@@ -1330,7 +1330,7 @@ declare const agentRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
1330
1330
|
}>;
|
|
1331
1331
|
graphId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1332
1332
|
name: "graph_id";
|
|
1333
|
-
tableName: "
|
|
1333
|
+
tableName: "sub_agent_relations";
|
|
1334
1334
|
dataType: "string";
|
|
1335
1335
|
columnType: "SQLiteText";
|
|
1336
1336
|
data: string;
|
|
@@ -1349,7 +1349,7 @@ declare const agentRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
1349
1349
|
}>;
|
|
1350
1350
|
projectId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1351
1351
|
name: "project_id";
|
|
1352
|
-
tableName: "
|
|
1352
|
+
tableName: "sub_agent_relations";
|
|
1353
1353
|
dataType: "string";
|
|
1354
1354
|
columnType: "SQLiteText";
|
|
1355
1355
|
data: string;
|
|
@@ -1368,7 +1368,7 @@ declare const agentRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
1368
1368
|
}>;
|
|
1369
1369
|
tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1370
1370
|
name: "tenant_id";
|
|
1371
|
-
tableName: "
|
|
1371
|
+
tableName: "sub_agent_relations";
|
|
1372
1372
|
dataType: "string";
|
|
1373
1373
|
columnType: "SQLiteText";
|
|
1374
1374
|
data: string;
|
|
@@ -1387,7 +1387,7 @@ declare const agentRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
1387
1387
|
}>;
|
|
1388
1388
|
id: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1389
1389
|
name: "id";
|
|
1390
|
-
tableName: "
|
|
1390
|
+
tableName: "sub_agent_relations";
|
|
1391
1391
|
dataType: "string";
|
|
1392
1392
|
columnType: "SQLiteText";
|
|
1393
1393
|
data: string;
|
|
@@ -1722,8 +1722,8 @@ declare const tasks: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
1722
1722
|
}, {}, {
|
|
1723
1723
|
$type: TaskMetadataConfig;
|
|
1724
1724
|
}>;
|
|
1725
|
-
|
|
1726
|
-
name: "
|
|
1725
|
+
subAgentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1726
|
+
name: "sub_agent_id";
|
|
1727
1727
|
tableName: "tasks";
|
|
1728
1728
|
dataType: "string";
|
|
1729
1729
|
columnType: "SQLiteText";
|
|
@@ -2138,13 +2138,13 @@ declare const dataComponents: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
2138
2138
|
};
|
|
2139
2139
|
dialect: "sqlite";
|
|
2140
2140
|
}>;
|
|
2141
|
-
declare const
|
|
2142
|
-
name: "
|
|
2141
|
+
declare const subAgentDataComponents: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
2142
|
+
name: "sub_agent_data_components";
|
|
2143
2143
|
schema: undefined;
|
|
2144
2144
|
columns: {
|
|
2145
2145
|
dataComponentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2146
2146
|
name: "data_component_id";
|
|
2147
|
-
tableName: "
|
|
2147
|
+
tableName: "sub_agent_data_components";
|
|
2148
2148
|
dataType: "string";
|
|
2149
2149
|
columnType: "SQLiteText";
|
|
2150
2150
|
data: string;
|
|
@@ -2163,7 +2163,7 @@ declare const agentDataComponents: drizzle_orm_sqlite_core.SQLiteTableWithColumn
|
|
|
2163
2163
|
}>;
|
|
2164
2164
|
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2165
2165
|
name: "created_at";
|
|
2166
|
-
tableName: "
|
|
2166
|
+
tableName: "sub_agent_data_components";
|
|
2167
2167
|
dataType: "string";
|
|
2168
2168
|
columnType: "SQLiteText";
|
|
2169
2169
|
data: string;
|
|
@@ -2180,9 +2180,9 @@ declare const agentDataComponents: drizzle_orm_sqlite_core.SQLiteTableWithColumn
|
|
|
2180
2180
|
}, {}, {
|
|
2181
2181
|
length: number | undefined;
|
|
2182
2182
|
}>;
|
|
2183
|
-
|
|
2184
|
-
name: "
|
|
2185
|
-
tableName: "
|
|
2183
|
+
subAgentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2184
|
+
name: "sub_agent_id";
|
|
2185
|
+
tableName: "sub_agent_data_components";
|
|
2186
2186
|
dataType: "string";
|
|
2187
2187
|
columnType: "SQLiteText";
|
|
2188
2188
|
data: string;
|
|
@@ -2201,7 +2201,7 @@ declare const agentDataComponents: drizzle_orm_sqlite_core.SQLiteTableWithColumn
|
|
|
2201
2201
|
}>;
|
|
2202
2202
|
graphId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2203
2203
|
name: "graph_id";
|
|
2204
|
-
tableName: "
|
|
2204
|
+
tableName: "sub_agent_data_components";
|
|
2205
2205
|
dataType: "string";
|
|
2206
2206
|
columnType: "SQLiteText";
|
|
2207
2207
|
data: string;
|
|
@@ -2220,7 +2220,7 @@ declare const agentDataComponents: drizzle_orm_sqlite_core.SQLiteTableWithColumn
|
|
|
2220
2220
|
}>;
|
|
2221
2221
|
projectId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2222
2222
|
name: "project_id";
|
|
2223
|
-
tableName: "
|
|
2223
|
+
tableName: "sub_agent_data_components";
|
|
2224
2224
|
dataType: "string";
|
|
2225
2225
|
columnType: "SQLiteText";
|
|
2226
2226
|
data: string;
|
|
@@ -2239,7 +2239,7 @@ declare const agentDataComponents: drizzle_orm_sqlite_core.SQLiteTableWithColumn
|
|
|
2239
2239
|
}>;
|
|
2240
2240
|
tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2241
2241
|
name: "tenant_id";
|
|
2242
|
-
tableName: "
|
|
2242
|
+
tableName: "sub_agent_data_components";
|
|
2243
2243
|
dataType: "string";
|
|
2244
2244
|
columnType: "SQLiteText";
|
|
2245
2245
|
data: string;
|
|
@@ -2258,7 +2258,7 @@ declare const agentDataComponents: drizzle_orm_sqlite_core.SQLiteTableWithColumn
|
|
|
2258
2258
|
}>;
|
|
2259
2259
|
id: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2260
2260
|
name: "id";
|
|
2261
|
-
tableName: "
|
|
2261
|
+
tableName: "sub_agent_data_components";
|
|
2262
2262
|
dataType: "string";
|
|
2263
2263
|
columnType: "SQLiteText";
|
|
2264
2264
|
data: string;
|
|
@@ -2437,13 +2437,13 @@ declare const artifactComponents: drizzle_orm_sqlite_core.SQLiteTableWithColumns
|
|
|
2437
2437
|
};
|
|
2438
2438
|
dialect: "sqlite";
|
|
2439
2439
|
}>;
|
|
2440
|
-
declare const
|
|
2441
|
-
name: "
|
|
2440
|
+
declare const subAgentArtifactComponents: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
2441
|
+
name: "sub_agent_artifact_components";
|
|
2442
2442
|
schema: undefined;
|
|
2443
2443
|
columns: {
|
|
2444
2444
|
artifactComponentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2445
2445
|
name: "artifact_component_id";
|
|
2446
|
-
tableName: "
|
|
2446
|
+
tableName: "sub_agent_artifact_components";
|
|
2447
2447
|
dataType: "string";
|
|
2448
2448
|
columnType: "SQLiteText";
|
|
2449
2449
|
data: string;
|
|
@@ -2462,7 +2462,7 @@ declare const agentArtifactComponents: drizzle_orm_sqlite_core.SQLiteTableWithCo
|
|
|
2462
2462
|
}>;
|
|
2463
2463
|
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2464
2464
|
name: "created_at";
|
|
2465
|
-
tableName: "
|
|
2465
|
+
tableName: "sub_agent_artifact_components";
|
|
2466
2466
|
dataType: "string";
|
|
2467
2467
|
columnType: "SQLiteText";
|
|
2468
2468
|
data: string;
|
|
@@ -2479,9 +2479,9 @@ declare const agentArtifactComponents: drizzle_orm_sqlite_core.SQLiteTableWithCo
|
|
|
2479
2479
|
}, {}, {
|
|
2480
2480
|
length: number | undefined;
|
|
2481
2481
|
}>;
|
|
2482
|
-
|
|
2483
|
-
name: "
|
|
2484
|
-
tableName: "
|
|
2482
|
+
subAgentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2483
|
+
name: "sub_agent_id";
|
|
2484
|
+
tableName: "sub_agent_artifact_components";
|
|
2485
2485
|
dataType: "string";
|
|
2486
2486
|
columnType: "SQLiteText";
|
|
2487
2487
|
data: string;
|
|
@@ -2500,7 +2500,7 @@ declare const agentArtifactComponents: drizzle_orm_sqlite_core.SQLiteTableWithCo
|
|
|
2500
2500
|
}>;
|
|
2501
2501
|
graphId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2502
2502
|
name: "graph_id";
|
|
2503
|
-
tableName: "
|
|
2503
|
+
tableName: "sub_agent_artifact_components";
|
|
2504
2504
|
dataType: "string";
|
|
2505
2505
|
columnType: "SQLiteText";
|
|
2506
2506
|
data: string;
|
|
@@ -2519,7 +2519,7 @@ declare const agentArtifactComponents: drizzle_orm_sqlite_core.SQLiteTableWithCo
|
|
|
2519
2519
|
}>;
|
|
2520
2520
|
projectId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2521
2521
|
name: "project_id";
|
|
2522
|
-
tableName: "
|
|
2522
|
+
tableName: "sub_agent_artifact_components";
|
|
2523
2523
|
dataType: "string";
|
|
2524
2524
|
columnType: "SQLiteText";
|
|
2525
2525
|
data: string;
|
|
@@ -2538,7 +2538,7 @@ declare const agentArtifactComponents: drizzle_orm_sqlite_core.SQLiteTableWithCo
|
|
|
2538
2538
|
}>;
|
|
2539
2539
|
tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2540
2540
|
name: "tenant_id";
|
|
2541
|
-
tableName: "
|
|
2541
|
+
tableName: "sub_agent_artifact_components";
|
|
2542
2542
|
dataType: "string";
|
|
2543
2543
|
columnType: "SQLiteText";
|
|
2544
2544
|
data: string;
|
|
@@ -2557,7 +2557,7 @@ declare const agentArtifactComponents: drizzle_orm_sqlite_core.SQLiteTableWithCo
|
|
|
2557
2557
|
}>;
|
|
2558
2558
|
id: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2559
2559
|
name: "id";
|
|
2560
|
-
tableName: "
|
|
2560
|
+
tableName: "sub_agent_artifact_components";
|
|
2561
2561
|
dataType: "string";
|
|
2562
2562
|
columnType: "SQLiteText";
|
|
2563
2563
|
data: string;
|
|
@@ -2665,13 +2665,6 @@ declare const tools: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
2665
2665
|
data: {
|
|
2666
2666
|
type: "mcp";
|
|
2667
2667
|
mcp: ToolMcpConfig;
|
|
2668
|
-
} | {
|
|
2669
|
-
type: "function";
|
|
2670
|
-
function?: {
|
|
2671
|
-
inputSchema: Record<string, unknown>;
|
|
2672
|
-
executeCode: string;
|
|
2673
|
-
dependencies: Record<string, unknown>;
|
|
2674
|
-
};
|
|
2675
2668
|
};
|
|
2676
2669
|
driverParam: Buffer<ArrayBufferLike>;
|
|
2677
2670
|
notNull: true;
|
|
@@ -2687,34 +2680,8 @@ declare const tools: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
2687
2680
|
$type: {
|
|
2688
2681
|
type: "mcp";
|
|
2689
2682
|
mcp: ToolMcpConfig;
|
|
2690
|
-
} | {
|
|
2691
|
-
type: "function";
|
|
2692
|
-
function?: {
|
|
2693
|
-
inputSchema: Record<string, unknown>;
|
|
2694
|
-
executeCode: string;
|
|
2695
|
-
dependencies: Record<string, unknown>;
|
|
2696
|
-
};
|
|
2697
2683
|
};
|
|
2698
2684
|
}>;
|
|
2699
|
-
functionId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2700
|
-
name: "function_id";
|
|
2701
|
-
tableName: "tools";
|
|
2702
|
-
dataType: "string";
|
|
2703
|
-
columnType: "SQLiteText";
|
|
2704
|
-
data: string;
|
|
2705
|
-
driverParam: string;
|
|
2706
|
-
notNull: false;
|
|
2707
|
-
hasDefault: false;
|
|
2708
|
-
isPrimaryKey: false;
|
|
2709
|
-
isAutoincrement: false;
|
|
2710
|
-
hasRuntimeDefault: false;
|
|
2711
|
-
enumValues: [string, ...string[]];
|
|
2712
|
-
baseColumn: never;
|
|
2713
|
-
identity: undefined;
|
|
2714
|
-
generated: undefined;
|
|
2715
|
-
}, {}, {
|
|
2716
|
-
length: number | undefined;
|
|
2717
|
-
}>;
|
|
2718
2685
|
credentialReferenceId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2719
2686
|
name: "credential_reference_id";
|
|
2720
2687
|
tableName: "tools";
|
|
@@ -2870,6 +2837,184 @@ declare const tools: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
2870
2837
|
};
|
|
2871
2838
|
dialect: "sqlite";
|
|
2872
2839
|
}>;
|
|
2840
|
+
declare const functionTools: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
2841
|
+
name: "function_tools";
|
|
2842
|
+
schema: undefined;
|
|
2843
|
+
columns: {
|
|
2844
|
+
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2845
|
+
name: "created_at";
|
|
2846
|
+
tableName: "function_tools";
|
|
2847
|
+
dataType: "string";
|
|
2848
|
+
columnType: "SQLiteText";
|
|
2849
|
+
data: string;
|
|
2850
|
+
driverParam: string;
|
|
2851
|
+
notNull: true;
|
|
2852
|
+
hasDefault: true;
|
|
2853
|
+
isPrimaryKey: false;
|
|
2854
|
+
isAutoincrement: false;
|
|
2855
|
+
hasRuntimeDefault: false;
|
|
2856
|
+
enumValues: [string, ...string[]];
|
|
2857
|
+
baseColumn: never;
|
|
2858
|
+
identity: undefined;
|
|
2859
|
+
generated: undefined;
|
|
2860
|
+
}, {}, {
|
|
2861
|
+
length: number | undefined;
|
|
2862
|
+
}>;
|
|
2863
|
+
updatedAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2864
|
+
name: "updated_at";
|
|
2865
|
+
tableName: "function_tools";
|
|
2866
|
+
dataType: "string";
|
|
2867
|
+
columnType: "SQLiteText";
|
|
2868
|
+
data: string;
|
|
2869
|
+
driverParam: string;
|
|
2870
|
+
notNull: true;
|
|
2871
|
+
hasDefault: true;
|
|
2872
|
+
isPrimaryKey: false;
|
|
2873
|
+
isAutoincrement: false;
|
|
2874
|
+
hasRuntimeDefault: false;
|
|
2875
|
+
enumValues: [string, ...string[]];
|
|
2876
|
+
baseColumn: never;
|
|
2877
|
+
identity: undefined;
|
|
2878
|
+
generated: undefined;
|
|
2879
|
+
}, {}, {
|
|
2880
|
+
length: number | undefined;
|
|
2881
|
+
}>;
|
|
2882
|
+
name: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2883
|
+
name: "name";
|
|
2884
|
+
tableName: "function_tools";
|
|
2885
|
+
dataType: "string";
|
|
2886
|
+
columnType: "SQLiteText";
|
|
2887
|
+
data: string;
|
|
2888
|
+
driverParam: string;
|
|
2889
|
+
notNull: true;
|
|
2890
|
+
hasDefault: false;
|
|
2891
|
+
isPrimaryKey: false;
|
|
2892
|
+
isAutoincrement: false;
|
|
2893
|
+
hasRuntimeDefault: false;
|
|
2894
|
+
enumValues: [string, ...string[]];
|
|
2895
|
+
baseColumn: never;
|
|
2896
|
+
identity: undefined;
|
|
2897
|
+
generated: undefined;
|
|
2898
|
+
}, {}, {
|
|
2899
|
+
length: number | undefined;
|
|
2900
|
+
}>;
|
|
2901
|
+
description: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2902
|
+
name: "description";
|
|
2903
|
+
tableName: "function_tools";
|
|
2904
|
+
dataType: "string";
|
|
2905
|
+
columnType: "SQLiteText";
|
|
2906
|
+
data: string;
|
|
2907
|
+
driverParam: string;
|
|
2908
|
+
notNull: false;
|
|
2909
|
+
hasDefault: false;
|
|
2910
|
+
isPrimaryKey: false;
|
|
2911
|
+
isAutoincrement: false;
|
|
2912
|
+
hasRuntimeDefault: false;
|
|
2913
|
+
enumValues: [string, ...string[]];
|
|
2914
|
+
baseColumn: never;
|
|
2915
|
+
identity: undefined;
|
|
2916
|
+
generated: undefined;
|
|
2917
|
+
}, {}, {
|
|
2918
|
+
length: number | undefined;
|
|
2919
|
+
}>;
|
|
2920
|
+
functionId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2921
|
+
name: "function_id";
|
|
2922
|
+
tableName: "function_tools";
|
|
2923
|
+
dataType: "string";
|
|
2924
|
+
columnType: "SQLiteText";
|
|
2925
|
+
data: string;
|
|
2926
|
+
driverParam: string;
|
|
2927
|
+
notNull: true;
|
|
2928
|
+
hasDefault: false;
|
|
2929
|
+
isPrimaryKey: false;
|
|
2930
|
+
isAutoincrement: false;
|
|
2931
|
+
hasRuntimeDefault: false;
|
|
2932
|
+
enumValues: [string, ...string[]];
|
|
2933
|
+
baseColumn: never;
|
|
2934
|
+
identity: undefined;
|
|
2935
|
+
generated: undefined;
|
|
2936
|
+
}, {}, {
|
|
2937
|
+
length: number | undefined;
|
|
2938
|
+
}>;
|
|
2939
|
+
graphId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2940
|
+
name: "graph_id";
|
|
2941
|
+
tableName: "function_tools";
|
|
2942
|
+
dataType: "string";
|
|
2943
|
+
columnType: "SQLiteText";
|
|
2944
|
+
data: string;
|
|
2945
|
+
driverParam: string;
|
|
2946
|
+
notNull: true;
|
|
2947
|
+
hasDefault: false;
|
|
2948
|
+
isPrimaryKey: false;
|
|
2949
|
+
isAutoincrement: false;
|
|
2950
|
+
hasRuntimeDefault: false;
|
|
2951
|
+
enumValues: [string, ...string[]];
|
|
2952
|
+
baseColumn: never;
|
|
2953
|
+
identity: undefined;
|
|
2954
|
+
generated: undefined;
|
|
2955
|
+
}, {}, {
|
|
2956
|
+
length: number | undefined;
|
|
2957
|
+
}>;
|
|
2958
|
+
projectId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2959
|
+
name: "project_id";
|
|
2960
|
+
tableName: "function_tools";
|
|
2961
|
+
dataType: "string";
|
|
2962
|
+
columnType: "SQLiteText";
|
|
2963
|
+
data: string;
|
|
2964
|
+
driverParam: string;
|
|
2965
|
+
notNull: true;
|
|
2966
|
+
hasDefault: false;
|
|
2967
|
+
isPrimaryKey: false;
|
|
2968
|
+
isAutoincrement: false;
|
|
2969
|
+
hasRuntimeDefault: false;
|
|
2970
|
+
enumValues: [string, ...string[]];
|
|
2971
|
+
baseColumn: never;
|
|
2972
|
+
identity: undefined;
|
|
2973
|
+
generated: undefined;
|
|
2974
|
+
}, {}, {
|
|
2975
|
+
length: number | undefined;
|
|
2976
|
+
}>;
|
|
2977
|
+
tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2978
|
+
name: "tenant_id";
|
|
2979
|
+
tableName: "function_tools";
|
|
2980
|
+
dataType: "string";
|
|
2981
|
+
columnType: "SQLiteText";
|
|
2982
|
+
data: string;
|
|
2983
|
+
driverParam: string;
|
|
2984
|
+
notNull: true;
|
|
2985
|
+
hasDefault: false;
|
|
2986
|
+
isPrimaryKey: false;
|
|
2987
|
+
isAutoincrement: false;
|
|
2988
|
+
hasRuntimeDefault: false;
|
|
2989
|
+
enumValues: [string, ...string[]];
|
|
2990
|
+
baseColumn: never;
|
|
2991
|
+
identity: undefined;
|
|
2992
|
+
generated: undefined;
|
|
2993
|
+
}, {}, {
|
|
2994
|
+
length: number | undefined;
|
|
2995
|
+
}>;
|
|
2996
|
+
id: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2997
|
+
name: "id";
|
|
2998
|
+
tableName: "function_tools";
|
|
2999
|
+
dataType: "string";
|
|
3000
|
+
columnType: "SQLiteText";
|
|
3001
|
+
data: string;
|
|
3002
|
+
driverParam: string;
|
|
3003
|
+
notNull: true;
|
|
3004
|
+
hasDefault: false;
|
|
3005
|
+
isPrimaryKey: false;
|
|
3006
|
+
isAutoincrement: false;
|
|
3007
|
+
hasRuntimeDefault: false;
|
|
3008
|
+
enumValues: [string, ...string[]];
|
|
3009
|
+
baseColumn: never;
|
|
3010
|
+
identity: undefined;
|
|
3011
|
+
generated: undefined;
|
|
3012
|
+
}, {}, {
|
|
3013
|
+
length: number | undefined;
|
|
3014
|
+
}>;
|
|
3015
|
+
};
|
|
3016
|
+
dialect: "sqlite";
|
|
3017
|
+
}>;
|
|
2873
3018
|
declare const functions: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
2874
3019
|
name: "functions";
|
|
2875
3020
|
schema: undefined;
|
|
@@ -3029,13 +3174,13 @@ declare const functions: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
3029
3174
|
};
|
|
3030
3175
|
dialect: "sqlite";
|
|
3031
3176
|
}>;
|
|
3032
|
-
declare const
|
|
3033
|
-
name: "
|
|
3177
|
+
declare const subAgentToolRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
3178
|
+
name: "sub_agent_tool_relations";
|
|
3034
3179
|
schema: undefined;
|
|
3035
3180
|
columns: {
|
|
3036
3181
|
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3037
3182
|
name: "created_at";
|
|
3038
|
-
tableName: "
|
|
3183
|
+
tableName: "sub_agent_tool_relations";
|
|
3039
3184
|
dataType: "string";
|
|
3040
3185
|
columnType: "SQLiteText";
|
|
3041
3186
|
data: string;
|
|
@@ -3054,7 +3199,7 @@ declare const agentToolRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns
|
|
|
3054
3199
|
}>;
|
|
3055
3200
|
updatedAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3056
3201
|
name: "updated_at";
|
|
3057
|
-
tableName: "
|
|
3202
|
+
tableName: "sub_agent_tool_relations";
|
|
3058
3203
|
dataType: "string";
|
|
3059
3204
|
columnType: "SQLiteText";
|
|
3060
3205
|
data: string;
|
|
@@ -3073,7 +3218,7 @@ declare const agentToolRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns
|
|
|
3073
3218
|
}>;
|
|
3074
3219
|
toolId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3075
3220
|
name: "tool_id";
|
|
3076
|
-
tableName: "
|
|
3221
|
+
tableName: "sub_agent_tool_relations";
|
|
3077
3222
|
dataType: "string";
|
|
3078
3223
|
columnType: "SQLiteText";
|
|
3079
3224
|
data: string;
|
|
@@ -3092,7 +3237,7 @@ declare const agentToolRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns
|
|
|
3092
3237
|
}>;
|
|
3093
3238
|
selectedTools: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3094
3239
|
name: "selected_tools";
|
|
3095
|
-
tableName: "
|
|
3240
|
+
tableName: "sub_agent_tool_relations";
|
|
3096
3241
|
dataType: "json";
|
|
3097
3242
|
columnType: "SQLiteBlobJson";
|
|
3098
3243
|
data: string[] | null;
|
|
@@ -3111,7 +3256,7 @@ declare const agentToolRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns
|
|
|
3111
3256
|
}>;
|
|
3112
3257
|
headers: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3113
3258
|
name: "headers";
|
|
3114
|
-
tableName: "
|
|
3259
|
+
tableName: "sub_agent_tool_relations";
|
|
3115
3260
|
dataType: "json";
|
|
3116
3261
|
columnType: "SQLiteBlobJson";
|
|
3117
3262
|
data: Record<string, string> | null;
|
|
@@ -3128,9 +3273,168 @@ declare const agentToolRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns
|
|
|
3128
3273
|
}, {}, {
|
|
3129
3274
|
$type: Record<string, string> | null;
|
|
3130
3275
|
}>;
|
|
3131
|
-
|
|
3132
|
-
name: "
|
|
3133
|
-
tableName: "
|
|
3276
|
+
subAgentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3277
|
+
name: "sub_agent_id";
|
|
3278
|
+
tableName: "sub_agent_tool_relations";
|
|
3279
|
+
dataType: "string";
|
|
3280
|
+
columnType: "SQLiteText";
|
|
3281
|
+
data: string;
|
|
3282
|
+
driverParam: string;
|
|
3283
|
+
notNull: true;
|
|
3284
|
+
hasDefault: false;
|
|
3285
|
+
isPrimaryKey: false;
|
|
3286
|
+
isAutoincrement: false;
|
|
3287
|
+
hasRuntimeDefault: false;
|
|
3288
|
+
enumValues: [string, ...string[]];
|
|
3289
|
+
baseColumn: never;
|
|
3290
|
+
identity: undefined;
|
|
3291
|
+
generated: undefined;
|
|
3292
|
+
}, {}, {
|
|
3293
|
+
length: number | undefined;
|
|
3294
|
+
}>;
|
|
3295
|
+
graphId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3296
|
+
name: "graph_id";
|
|
3297
|
+
tableName: "sub_agent_tool_relations";
|
|
3298
|
+
dataType: "string";
|
|
3299
|
+
columnType: "SQLiteText";
|
|
3300
|
+
data: string;
|
|
3301
|
+
driverParam: string;
|
|
3302
|
+
notNull: true;
|
|
3303
|
+
hasDefault: false;
|
|
3304
|
+
isPrimaryKey: false;
|
|
3305
|
+
isAutoincrement: false;
|
|
3306
|
+
hasRuntimeDefault: false;
|
|
3307
|
+
enumValues: [string, ...string[]];
|
|
3308
|
+
baseColumn: never;
|
|
3309
|
+
identity: undefined;
|
|
3310
|
+
generated: undefined;
|
|
3311
|
+
}, {}, {
|
|
3312
|
+
length: number | undefined;
|
|
3313
|
+
}>;
|
|
3314
|
+
projectId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3315
|
+
name: "project_id";
|
|
3316
|
+
tableName: "sub_agent_tool_relations";
|
|
3317
|
+
dataType: "string";
|
|
3318
|
+
columnType: "SQLiteText";
|
|
3319
|
+
data: string;
|
|
3320
|
+
driverParam: string;
|
|
3321
|
+
notNull: true;
|
|
3322
|
+
hasDefault: false;
|
|
3323
|
+
isPrimaryKey: false;
|
|
3324
|
+
isAutoincrement: false;
|
|
3325
|
+
hasRuntimeDefault: false;
|
|
3326
|
+
enumValues: [string, ...string[]];
|
|
3327
|
+
baseColumn: never;
|
|
3328
|
+
identity: undefined;
|
|
3329
|
+
generated: undefined;
|
|
3330
|
+
}, {}, {
|
|
3331
|
+
length: number | undefined;
|
|
3332
|
+
}>;
|
|
3333
|
+
tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3334
|
+
name: "tenant_id";
|
|
3335
|
+
tableName: "sub_agent_tool_relations";
|
|
3336
|
+
dataType: "string";
|
|
3337
|
+
columnType: "SQLiteText";
|
|
3338
|
+
data: string;
|
|
3339
|
+
driverParam: string;
|
|
3340
|
+
notNull: true;
|
|
3341
|
+
hasDefault: false;
|
|
3342
|
+
isPrimaryKey: false;
|
|
3343
|
+
isAutoincrement: false;
|
|
3344
|
+
hasRuntimeDefault: false;
|
|
3345
|
+
enumValues: [string, ...string[]];
|
|
3346
|
+
baseColumn: never;
|
|
3347
|
+
identity: undefined;
|
|
3348
|
+
generated: undefined;
|
|
3349
|
+
}, {}, {
|
|
3350
|
+
length: number | undefined;
|
|
3351
|
+
}>;
|
|
3352
|
+
id: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3353
|
+
name: "id";
|
|
3354
|
+
tableName: "sub_agent_tool_relations";
|
|
3355
|
+
dataType: "string";
|
|
3356
|
+
columnType: "SQLiteText";
|
|
3357
|
+
data: string;
|
|
3358
|
+
driverParam: string;
|
|
3359
|
+
notNull: true;
|
|
3360
|
+
hasDefault: false;
|
|
3361
|
+
isPrimaryKey: false;
|
|
3362
|
+
isAutoincrement: false;
|
|
3363
|
+
hasRuntimeDefault: false;
|
|
3364
|
+
enumValues: [string, ...string[]];
|
|
3365
|
+
baseColumn: never;
|
|
3366
|
+
identity: undefined;
|
|
3367
|
+
generated: undefined;
|
|
3368
|
+
}, {}, {
|
|
3369
|
+
length: number | undefined;
|
|
3370
|
+
}>;
|
|
3371
|
+
};
|
|
3372
|
+
dialect: "sqlite";
|
|
3373
|
+
}>;
|
|
3374
|
+
declare const agentFunctionToolRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
3375
|
+
name: "agent_function_tool_relations";
|
|
3376
|
+
schema: undefined;
|
|
3377
|
+
columns: {
|
|
3378
|
+
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3379
|
+
name: "created_at";
|
|
3380
|
+
tableName: "agent_function_tool_relations";
|
|
3381
|
+
dataType: "string";
|
|
3382
|
+
columnType: "SQLiteText";
|
|
3383
|
+
data: string;
|
|
3384
|
+
driverParam: string;
|
|
3385
|
+
notNull: true;
|
|
3386
|
+
hasDefault: true;
|
|
3387
|
+
isPrimaryKey: false;
|
|
3388
|
+
isAutoincrement: false;
|
|
3389
|
+
hasRuntimeDefault: false;
|
|
3390
|
+
enumValues: [string, ...string[]];
|
|
3391
|
+
baseColumn: never;
|
|
3392
|
+
identity: undefined;
|
|
3393
|
+
generated: undefined;
|
|
3394
|
+
}, {}, {
|
|
3395
|
+
length: number | undefined;
|
|
3396
|
+
}>;
|
|
3397
|
+
updatedAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3398
|
+
name: "updated_at";
|
|
3399
|
+
tableName: "agent_function_tool_relations";
|
|
3400
|
+
dataType: "string";
|
|
3401
|
+
columnType: "SQLiteText";
|
|
3402
|
+
data: string;
|
|
3403
|
+
driverParam: string;
|
|
3404
|
+
notNull: true;
|
|
3405
|
+
hasDefault: true;
|
|
3406
|
+
isPrimaryKey: false;
|
|
3407
|
+
isAutoincrement: false;
|
|
3408
|
+
hasRuntimeDefault: false;
|
|
3409
|
+
enumValues: [string, ...string[]];
|
|
3410
|
+
baseColumn: never;
|
|
3411
|
+
identity: undefined;
|
|
3412
|
+
generated: undefined;
|
|
3413
|
+
}, {}, {
|
|
3414
|
+
length: number | undefined;
|
|
3415
|
+
}>;
|
|
3416
|
+
functionToolId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3417
|
+
name: "function_tool_id";
|
|
3418
|
+
tableName: "agent_function_tool_relations";
|
|
3419
|
+
dataType: "string";
|
|
3420
|
+
columnType: "SQLiteText";
|
|
3421
|
+
data: string;
|
|
3422
|
+
driverParam: string;
|
|
3423
|
+
notNull: true;
|
|
3424
|
+
hasDefault: false;
|
|
3425
|
+
isPrimaryKey: false;
|
|
3426
|
+
isAutoincrement: false;
|
|
3427
|
+
hasRuntimeDefault: false;
|
|
3428
|
+
enumValues: [string, ...string[]];
|
|
3429
|
+
baseColumn: never;
|
|
3430
|
+
identity: undefined;
|
|
3431
|
+
generated: undefined;
|
|
3432
|
+
}, {}, {
|
|
3433
|
+
length: number | undefined;
|
|
3434
|
+
}>;
|
|
3435
|
+
subAgentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3436
|
+
name: "sub_agent_id";
|
|
3437
|
+
tableName: "agent_function_tool_relations";
|
|
3134
3438
|
dataType: "string";
|
|
3135
3439
|
columnType: "SQLiteText";
|
|
3136
3440
|
data: string;
|
|
@@ -3149,7 +3453,7 @@ declare const agentToolRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns
|
|
|
3149
3453
|
}>;
|
|
3150
3454
|
graphId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3151
3455
|
name: "graph_id";
|
|
3152
|
-
tableName: "
|
|
3456
|
+
tableName: "agent_function_tool_relations";
|
|
3153
3457
|
dataType: "string";
|
|
3154
3458
|
columnType: "SQLiteText";
|
|
3155
3459
|
data: string;
|
|
@@ -3168,7 +3472,7 @@ declare const agentToolRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns
|
|
|
3168
3472
|
}>;
|
|
3169
3473
|
projectId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3170
3474
|
name: "project_id";
|
|
3171
|
-
tableName: "
|
|
3475
|
+
tableName: "agent_function_tool_relations";
|
|
3172
3476
|
dataType: "string";
|
|
3173
3477
|
columnType: "SQLiteText";
|
|
3174
3478
|
data: string;
|
|
@@ -3187,7 +3491,7 @@ declare const agentToolRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns
|
|
|
3187
3491
|
}>;
|
|
3188
3492
|
tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3189
3493
|
name: "tenant_id";
|
|
3190
|
-
tableName: "
|
|
3494
|
+
tableName: "agent_function_tool_relations";
|
|
3191
3495
|
dataType: "string";
|
|
3192
3496
|
columnType: "SQLiteText";
|
|
3193
3497
|
data: string;
|
|
@@ -3206,7 +3510,7 @@ declare const agentToolRelations: drizzle_orm_sqlite_core.SQLiteTableWithColumns
|
|
|
3206
3510
|
}>;
|
|
3207
3511
|
id: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3208
3512
|
name: "id";
|
|
3209
|
-
tableName: "
|
|
3513
|
+
tableName: "agent_function_tool_relations";
|
|
3210
3514
|
dataType: "string";
|
|
3211
3515
|
columnType: "SQLiteText";
|
|
3212
3516
|
data: string;
|
|
@@ -3287,8 +3591,8 @@ declare const conversations: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
3287
3591
|
}, {}, {
|
|
3288
3592
|
length: number | undefined;
|
|
3289
3593
|
}>;
|
|
3290
|
-
|
|
3291
|
-
name: "
|
|
3594
|
+
activeSubAgentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3595
|
+
name: "active_sub_agent_id";
|
|
3292
3596
|
tableName: "conversations";
|
|
3293
3597
|
dataType: "string";
|
|
3294
3598
|
columnType: "SQLiteText";
|
|
@@ -3503,8 +3807,8 @@ declare const messages: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
3503
3807
|
}, {}, {
|
|
3504
3808
|
length: number | undefined;
|
|
3505
3809
|
}>;
|
|
3506
|
-
|
|
3507
|
-
name: "
|
|
3810
|
+
fromSubAgentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3811
|
+
name: "from_sub_agent_id";
|
|
3508
3812
|
tableName: "messages";
|
|
3509
3813
|
dataType: "string";
|
|
3510
3814
|
columnType: "SQLiteText";
|
|
@@ -3522,8 +3826,8 @@ declare const messages: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
3522
3826
|
}, {}, {
|
|
3523
3827
|
length: number | undefined;
|
|
3524
3828
|
}>;
|
|
3525
|
-
|
|
3526
|
-
name: "
|
|
3829
|
+
toSubAgentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3830
|
+
name: "to_sub_agent_id";
|
|
3527
3831
|
tableName: "messages";
|
|
3528
3832
|
dataType: "string";
|
|
3529
3833
|
columnType: "SQLiteText";
|
|
@@ -3542,7 +3846,7 @@ declare const messages: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
3542
3846
|
length: number | undefined;
|
|
3543
3847
|
}>;
|
|
3544
3848
|
fromExternalAgentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3545
|
-
name: "
|
|
3849
|
+
name: "from_external_sub_agent_id";
|
|
3546
3850
|
tableName: "messages";
|
|
3547
3851
|
dataType: "string";
|
|
3548
3852
|
columnType: "SQLiteText";
|
|
@@ -3561,7 +3865,7 @@ declare const messages: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
3561
3865
|
length: number | undefined;
|
|
3562
3866
|
}>;
|
|
3563
3867
|
toExternalAgentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3564
|
-
name: "
|
|
3868
|
+
name: "to_external_sub_agent_id";
|
|
3565
3869
|
tableName: "messages";
|
|
3566
3870
|
dataType: "string";
|
|
3567
3871
|
columnType: "SQLiteText";
|
|
@@ -3636,25 +3940,6 @@ declare const messages: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
3636
3940
|
}, {}, {
|
|
3637
3941
|
length: number | undefined;
|
|
3638
3942
|
}>;
|
|
3639
|
-
agentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3640
|
-
name: "agent_id";
|
|
3641
|
-
tableName: "messages";
|
|
3642
|
-
dataType: "string";
|
|
3643
|
-
columnType: "SQLiteText";
|
|
3644
|
-
data: string;
|
|
3645
|
-
driverParam: string;
|
|
3646
|
-
notNull: false;
|
|
3647
|
-
hasDefault: false;
|
|
3648
|
-
isPrimaryKey: false;
|
|
3649
|
-
isAutoincrement: false;
|
|
3650
|
-
hasRuntimeDefault: false;
|
|
3651
|
-
enumValues: [string, ...string[]];
|
|
3652
|
-
baseColumn: never;
|
|
3653
|
-
identity: undefined;
|
|
3654
|
-
generated: undefined;
|
|
3655
|
-
}, {}, {
|
|
3656
|
-
length: number | undefined;
|
|
3657
|
-
}>;
|
|
3658
3943
|
taskId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3659
3944
|
name: "task_id";
|
|
3660
3945
|
tableName: "messages";
|
|
@@ -4557,14 +4842,15 @@ declare const tasksRelations: drizzle_orm.Relations<"tasks", {
|
|
|
4557
4842
|
project: drizzle_orm.One<"projects", true>;
|
|
4558
4843
|
parentRelations: drizzle_orm.Many<"task_relations">;
|
|
4559
4844
|
childRelations: drizzle_orm.Many<"task_relations">;
|
|
4560
|
-
|
|
4845
|
+
subAgent: drizzle_orm.One<"sub_agents", true>;
|
|
4561
4846
|
messages: drizzle_orm.Many<"messages">;
|
|
4562
4847
|
ledgerArtifacts: drizzle_orm.Many<"ledger_artifacts">;
|
|
4563
4848
|
}>;
|
|
4564
4849
|
declare const projectsRelations: drizzle_orm.Relations<"projects", {
|
|
4565
|
-
|
|
4850
|
+
subAgents: drizzle_orm.Many<"sub_agents">;
|
|
4566
4851
|
agentGraphs: drizzle_orm.Many<"agent_graph">;
|
|
4567
4852
|
tools: drizzle_orm.Many<"tools">;
|
|
4853
|
+
functions: drizzle_orm.Many<"functions">;
|
|
4568
4854
|
contextConfigs: drizzle_orm.Many<"context_configs">;
|
|
4569
4855
|
externalAgents: drizzle_orm.Many<"external_agents">;
|
|
4570
4856
|
conversations: drizzle_orm.Many<"conversations">;
|
|
@@ -4586,35 +4872,37 @@ declare const contextConfigsRelations: drizzle_orm.Relations<"context_configs",
|
|
|
4586
4872
|
declare const contextCacheRelations: drizzle_orm.Relations<"context_cache", {
|
|
4587
4873
|
contextConfig: drizzle_orm.One<"context_configs", true>;
|
|
4588
4874
|
}>;
|
|
4589
|
-
declare const
|
|
4875
|
+
declare const subAgentsRelations: drizzle_orm.Relations<"sub_agents", {
|
|
4590
4876
|
project: drizzle_orm.One<"projects", true>;
|
|
4591
4877
|
tasks: drizzle_orm.Many<"tasks">;
|
|
4592
4878
|
defaultForGraphs: drizzle_orm.Many<"agent_graph">;
|
|
4593
|
-
sourceRelations: drizzle_orm.Many<"
|
|
4594
|
-
targetRelations: drizzle_orm.Many<"
|
|
4879
|
+
sourceRelations: drizzle_orm.Many<"sub_agent_relations">;
|
|
4880
|
+
targetRelations: drizzle_orm.Many<"sub_agent_relations">;
|
|
4595
4881
|
sentMessages: drizzle_orm.Many<"messages">;
|
|
4596
4882
|
receivedMessages: drizzle_orm.Many<"messages">;
|
|
4597
4883
|
associatedMessages: drizzle_orm.Many<"messages">;
|
|
4598
|
-
toolRelations: drizzle_orm.Many<"
|
|
4599
|
-
|
|
4600
|
-
|
|
4884
|
+
toolRelations: drizzle_orm.Many<"sub_agent_tool_relations">;
|
|
4885
|
+
functionToolRelations: drizzle_orm.Many<"agent_function_tool_relations">;
|
|
4886
|
+
dataComponentRelations: drizzle_orm.Many<"sub_agent_data_components">;
|
|
4887
|
+
artifactComponentRelations: drizzle_orm.Many<"sub_agent_artifact_components">;
|
|
4601
4888
|
}>;
|
|
4602
4889
|
declare const agentGraphRelations: drizzle_orm.Relations<"agent_graph", {
|
|
4603
4890
|
project: drizzle_orm.One<"projects", true>;
|
|
4604
|
-
|
|
4891
|
+
defaultSubAgent: drizzle_orm.One<"sub_agents", false>;
|
|
4605
4892
|
contextConfig: drizzle_orm.One<"context_configs", false>;
|
|
4893
|
+
functionTools: drizzle_orm.Many<"function_tools">;
|
|
4606
4894
|
}>;
|
|
4607
4895
|
declare const externalAgentsRelations: drizzle_orm.Relations<"external_agents", {
|
|
4608
4896
|
project: drizzle_orm.One<"projects", true>;
|
|
4609
|
-
|
|
4897
|
+
subAgentRelations: drizzle_orm.Many<"sub_agent_relations">;
|
|
4610
4898
|
credentialReference: drizzle_orm.One<"credential_references", false>;
|
|
4611
4899
|
}>;
|
|
4612
4900
|
declare const apiKeysRelations: drizzle_orm.Relations<"api_keys", {
|
|
4613
4901
|
project: drizzle_orm.One<"projects", true>;
|
|
4614
4902
|
graph: drizzle_orm.One<"agent_graph", true>;
|
|
4615
4903
|
}>;
|
|
4616
|
-
declare const agentToolRelationsRelations: drizzle_orm.Relations<"
|
|
4617
|
-
|
|
4904
|
+
declare const agentToolRelationsRelations: drizzle_orm.Relations<"sub_agent_tool_relations", {
|
|
4905
|
+
subAgent: drizzle_orm.One<"sub_agents", true>;
|
|
4618
4906
|
tool: drizzle_orm.One<"tools", true>;
|
|
4619
4907
|
}>;
|
|
4620
4908
|
declare const credentialReferencesRelations: drizzle_orm.Relations<"credential_references", {
|
|
@@ -4622,20 +4910,18 @@ declare const credentialReferencesRelations: drizzle_orm.Relations<"credential_r
|
|
|
4622
4910
|
}>;
|
|
4623
4911
|
declare const toolsRelations: drizzle_orm.Relations<"tools", {
|
|
4624
4912
|
project: drizzle_orm.One<"projects", true>;
|
|
4625
|
-
|
|
4913
|
+
subAgentRelations: drizzle_orm.Many<"sub_agent_tool_relations">;
|
|
4626
4914
|
credentialReference: drizzle_orm.One<"credential_references", false>;
|
|
4627
|
-
function: drizzle_orm.One<"functions", false>;
|
|
4628
4915
|
}>;
|
|
4629
4916
|
declare const conversationsRelations: drizzle_orm.Relations<"conversations", {
|
|
4630
4917
|
project: drizzle_orm.One<"projects", true>;
|
|
4631
4918
|
messages: drizzle_orm.Many<"messages">;
|
|
4632
|
-
|
|
4919
|
+
activeSubAgent: drizzle_orm.One<"sub_agents", true>;
|
|
4633
4920
|
}>;
|
|
4634
4921
|
declare const messagesRelations: drizzle_orm.Relations<"messages", {
|
|
4635
4922
|
conversation: drizzle_orm.One<"conversations", true>;
|
|
4636
|
-
|
|
4637
|
-
|
|
4638
|
-
toAgent: drizzle_orm.One<"agents", false>;
|
|
4923
|
+
fromSubAgent: drizzle_orm.One<"sub_agents", false>;
|
|
4924
|
+
toSubAgent: drizzle_orm.One<"sub_agents", false>;
|
|
4639
4925
|
fromExternalAgent: drizzle_orm.One<"external_agents", false>;
|
|
4640
4926
|
toExternalAgent: drizzle_orm.One<"external_agents", false>;
|
|
4641
4927
|
task: drizzle_orm.One<"tasks", false>;
|
|
@@ -4643,18 +4929,19 @@ declare const messagesRelations: drizzle_orm.Relations<"messages", {
|
|
|
4643
4929
|
childMessages: drizzle_orm.Many<"messages">;
|
|
4644
4930
|
}>;
|
|
4645
4931
|
declare const artifactComponentsRelations: drizzle_orm.Relations<"artifact_components", {
|
|
4646
|
-
|
|
4932
|
+
project: drizzle_orm.One<"projects", true>;
|
|
4933
|
+
subAgentRelations: drizzle_orm.Many<"sub_agent_artifact_components">;
|
|
4647
4934
|
}>;
|
|
4648
|
-
declare const
|
|
4649
|
-
|
|
4935
|
+
declare const subAgentArtifactComponentsRelations: drizzle_orm.Relations<"sub_agent_artifact_components", {
|
|
4936
|
+
subAgent: drizzle_orm.One<"sub_agents", true>;
|
|
4650
4937
|
artifactComponent: drizzle_orm.One<"artifact_components", true>;
|
|
4651
4938
|
}>;
|
|
4652
4939
|
declare const dataComponentsRelations: drizzle_orm.Relations<"data_components", {
|
|
4653
4940
|
project: drizzle_orm.One<"projects", true>;
|
|
4654
|
-
|
|
4941
|
+
subAgentRelations: drizzle_orm.Many<"sub_agent_data_components">;
|
|
4655
4942
|
}>;
|
|
4656
|
-
declare const
|
|
4657
|
-
|
|
4943
|
+
declare const subAgentDataComponentsRelations: drizzle_orm.Relations<"sub_agent_data_components", {
|
|
4944
|
+
subAgent: drizzle_orm.One<"sub_agents", true>;
|
|
4658
4945
|
dataComponent: drizzle_orm.One<"data_components", true>;
|
|
4659
4946
|
}>;
|
|
4660
4947
|
declare const ledgerArtifactsRelations: drizzle_orm.Relations<"ledger_artifacts", {
|
|
@@ -4662,27 +4949,30 @@ declare const ledgerArtifactsRelations: drizzle_orm.Relations<"ledger_artifacts"
|
|
|
4662
4949
|
task: drizzle_orm.One<"tasks", true>;
|
|
4663
4950
|
}>;
|
|
4664
4951
|
declare const functionsRelations: drizzle_orm.Relations<"functions", {
|
|
4665
|
-
|
|
4952
|
+
functionTools: drizzle_orm.Many<"function_tools">;
|
|
4666
4953
|
}>;
|
|
4667
|
-
declare const
|
|
4954
|
+
declare const subAgentRelationsRelations: drizzle_orm.Relations<"sub_agent_relations", {
|
|
4668
4955
|
graph: drizzle_orm.One<"agent_graph", true>;
|
|
4669
|
-
|
|
4670
|
-
|
|
4956
|
+
sourceSubAgent: drizzle_orm.One<"sub_agents", true>;
|
|
4957
|
+
targetSubAgent: drizzle_orm.One<"sub_agents", false>;
|
|
4671
4958
|
externalAgent: drizzle_orm.One<"external_agents", false>;
|
|
4672
4959
|
}>;
|
|
4960
|
+
declare const functionToolsRelations: drizzle_orm.Relations<"function_tools", {
|
|
4961
|
+
project: drizzle_orm.One<"projects", true>;
|
|
4962
|
+
graph: drizzle_orm.One<"agent_graph", true>;
|
|
4963
|
+
function: drizzle_orm.One<"functions", true>;
|
|
4964
|
+
agentRelations: drizzle_orm.Many<"agent_function_tool_relations">;
|
|
4965
|
+
}>;
|
|
4966
|
+
declare const agentFunctionToolRelationsRelations: drizzle_orm.Relations<"agent_function_tool_relations", {
|
|
4967
|
+
agent: drizzle_orm.One<"sub_agents", true>;
|
|
4968
|
+
functionTool: drizzle_orm.One<"function_tools", true>;
|
|
4969
|
+
}>;
|
|
4673
4970
|
|
|
4674
|
-
declare const
|
|
4675
|
-
declare const
|
|
4676
|
-
declare const schema_agentDataComponents: typeof agentDataComponents;
|
|
4677
|
-
declare const schema_agentDataComponentsRelations: typeof agentDataComponentsRelations;
|
|
4971
|
+
declare const schema_agentFunctionToolRelations: typeof agentFunctionToolRelations;
|
|
4972
|
+
declare const schema_agentFunctionToolRelationsRelations: typeof agentFunctionToolRelationsRelations;
|
|
4678
4973
|
declare const schema_agentGraph: typeof agentGraph;
|
|
4679
4974
|
declare const schema_agentGraphRelations: typeof agentGraphRelations;
|
|
4680
|
-
declare const schema_agentRelations: typeof agentRelations;
|
|
4681
|
-
declare const schema_agentRelationsRelations: typeof agentRelationsRelations;
|
|
4682
|
-
declare const schema_agentToolRelations: typeof agentToolRelations;
|
|
4683
4975
|
declare const schema_agentToolRelationsRelations: typeof agentToolRelationsRelations;
|
|
4684
|
-
declare const schema_agents: typeof agents;
|
|
4685
|
-
declare const schema_agentsRelations: typeof agentsRelations;
|
|
4686
4976
|
declare const schema_apiKeys: typeof apiKeys;
|
|
4687
4977
|
declare const schema_apiKeysRelations: typeof apiKeysRelations;
|
|
4688
4978
|
declare const schema_artifactComponents: typeof artifactComponents;
|
|
@@ -4699,6 +4989,8 @@ declare const schema_dataComponents: typeof dataComponents;
|
|
|
4699
4989
|
declare const schema_dataComponentsRelations: typeof dataComponentsRelations;
|
|
4700
4990
|
declare const schema_externalAgents: typeof externalAgents;
|
|
4701
4991
|
declare const schema_externalAgentsRelations: typeof externalAgentsRelations;
|
|
4992
|
+
declare const schema_functionTools: typeof functionTools;
|
|
4993
|
+
declare const schema_functionToolsRelations: typeof functionToolsRelations;
|
|
4702
4994
|
declare const schema_functions: typeof functions;
|
|
4703
4995
|
declare const schema_functionsRelations: typeof functionsRelations;
|
|
4704
4996
|
declare const schema_ledgerArtifacts: typeof ledgerArtifacts;
|
|
@@ -4707,6 +4999,15 @@ declare const schema_messages: typeof messages;
|
|
|
4707
4999
|
declare const schema_messagesRelations: typeof messagesRelations;
|
|
4708
5000
|
declare const schema_projects: typeof projects;
|
|
4709
5001
|
declare const schema_projectsRelations: typeof projectsRelations;
|
|
5002
|
+
declare const schema_subAgentArtifactComponents: typeof subAgentArtifactComponents;
|
|
5003
|
+
declare const schema_subAgentArtifactComponentsRelations: typeof subAgentArtifactComponentsRelations;
|
|
5004
|
+
declare const schema_subAgentDataComponents: typeof subAgentDataComponents;
|
|
5005
|
+
declare const schema_subAgentDataComponentsRelations: typeof subAgentDataComponentsRelations;
|
|
5006
|
+
declare const schema_subAgentRelations: typeof subAgentRelations;
|
|
5007
|
+
declare const schema_subAgentRelationsRelations: typeof subAgentRelationsRelations;
|
|
5008
|
+
declare const schema_subAgentToolRelations: typeof subAgentToolRelations;
|
|
5009
|
+
declare const schema_subAgents: typeof subAgents;
|
|
5010
|
+
declare const schema_subAgentsRelations: typeof subAgentsRelations;
|
|
4710
5011
|
declare const schema_taskRelations: typeof taskRelations;
|
|
4711
5012
|
declare const schema_taskRelationsRelations: typeof taskRelationsRelations;
|
|
4712
5013
|
declare const schema_tasks: typeof tasks;
|
|
@@ -4714,7 +5015,7 @@ declare const schema_tasksRelations: typeof tasksRelations;
|
|
|
4714
5015
|
declare const schema_tools: typeof tools;
|
|
4715
5016
|
declare const schema_toolsRelations: typeof toolsRelations;
|
|
4716
5017
|
declare namespace schema {
|
|
4717
|
-
export {
|
|
5018
|
+
export { schema_agentFunctionToolRelations as agentFunctionToolRelations, schema_agentFunctionToolRelationsRelations as agentFunctionToolRelationsRelations, schema_agentGraph as agentGraph, schema_agentGraphRelations as agentGraphRelations, schema_agentToolRelationsRelations as agentToolRelationsRelations, schema_apiKeys as apiKeys, schema_apiKeysRelations as apiKeysRelations, schema_artifactComponents as artifactComponents, schema_artifactComponentsRelations as artifactComponentsRelations, schema_contextCache as contextCache, schema_contextCacheRelations as contextCacheRelations, schema_contextConfigs as contextConfigs, schema_contextConfigsRelations as contextConfigsRelations, schema_conversations as conversations, schema_conversationsRelations as conversationsRelations, schema_credentialReferences as credentialReferences, schema_credentialReferencesRelations as credentialReferencesRelations, schema_dataComponents as dataComponents, schema_dataComponentsRelations as dataComponentsRelations, schema_externalAgents as externalAgents, schema_externalAgentsRelations as externalAgentsRelations, schema_functionTools as functionTools, schema_functionToolsRelations as functionToolsRelations, schema_functions as functions, schema_functionsRelations as functionsRelations, schema_ledgerArtifacts as ledgerArtifacts, schema_ledgerArtifactsRelations as ledgerArtifactsRelations, schema_messages as messages, schema_messagesRelations as messagesRelations, schema_projects as projects, schema_projectsRelations as projectsRelations, schema_subAgentArtifactComponents as subAgentArtifactComponents, schema_subAgentArtifactComponentsRelations as subAgentArtifactComponentsRelations, schema_subAgentDataComponents as subAgentDataComponents, schema_subAgentDataComponentsRelations as subAgentDataComponentsRelations, schema_subAgentRelations as subAgentRelations, schema_subAgentRelationsRelations as subAgentRelationsRelations, schema_subAgentToolRelations as subAgentToolRelations, schema_subAgents as subAgents, schema_subAgentsRelations as subAgentsRelations, schema_taskRelations as taskRelations, schema_taskRelationsRelations as taskRelationsRelations, schema_tasks as tasks, schema_tasksRelations as tasksRelations, schema_tools as tools, schema_toolsRelations as toolsRelations };
|
|
4718
5019
|
}
|
|
4719
5020
|
|
|
4720
|
-
export {
|
|
5021
|
+
export { taskRelationsRelations as A, contextConfigsRelations as B, contextCacheRelations as C, subAgentsRelations as D, agentGraphRelations as E, externalAgentsRelations as F, apiKeysRelations as G, agentToolRelationsRelations as H, credentialReferencesRelations as I, toolsRelations as J, conversationsRelations as K, messagesRelations as L, artifactComponentsRelations as M, subAgentArtifactComponentsRelations as N, dataComponentsRelations as O, subAgentDataComponentsRelations as P, ledgerArtifactsRelations as Q, functionsRelations as R, subAgentRelationsRelations as S, functionToolsRelations as T, agentFunctionToolRelationsRelations as U, agentGraph as a, contextCache as b, contextConfigs as c, subAgents as d, subAgentRelations as e, externalAgents as f, taskRelations as g, dataComponents as h, subAgentDataComponents as i, artifactComponents as j, subAgentArtifactComponents as k, tools as l, functionTools as m, functions as n, subAgentToolRelations as o, projects as p, agentFunctionToolRelations as q, conversations as r, schema as s, tasks as t, messages as u, ledgerArtifacts as v, apiKeys as w, credentialReferences as x, tasksRelations as y, projectsRelations as z };
|