@inkeep/agents-core 0.17.0 → 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-TO2HNKGP.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 +1664 -1544
- package/dist/index.d.ts +1664 -1544
- package/dist/index.js +1953 -1467
- 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-L53XWAYG.js +0 -134
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
export { h as ACTIVITY_NAMES, f as ACTIVITY_STATUS, e as ACTIVITY_TYPES, g as AGENT_IDS, p as AGGREGATE_OPERATORS, A as AI_OPERATIONS, j as AI_TOOL_TYPES, o as DATA_SOURCES, k as DATA_TYPES, D as DELEGATION_FROM_SUB_AGENT_ID, b as DELEGATION_ID, a as DELEGATION_TO_SUB_AGENT_ID, F as FIELD_TYPES, O as OPERATORS, m as ORDER_DIRECTIONS, P as PANEL_TYPES, q as QUERY_DEFAULTS, l as QUERY_EXPRESSIONS, Q as QUERY_FIELD_CONFIGS, n as QUERY_TYPES, R as REDUCE_OPERATIONS, d as SPAN_KEYS, S as SPAN_NAMES, i as TOOL_NAMES, T as TRANSFER_FROM_SUB_AGENT_ID, c as TRANSFER_TO_SUB_AGENT_ID, U as UNKNOWN_VALUE } from './signoz-queries-CifqdbnO.cjs';
|
|
1
2
|
import { z } from 'zod';
|
|
2
|
-
import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullGraphAgentInsertSchema } from './utility-
|
|
3
|
-
export { e as AgentStopWhen, b as AgentStopWhenSchema, g as CredentialStoreType, i as FunctionApiSelectSchema, j as FunctionApiUpdateSchema, d as GraphStopWhen, G as GraphStopWhenSchema, h as MCPTransportType, f as ModelSettings, M as ModelSettingsSchema, k as SandboxConfigSchema, c as StopWhen, S as StopWhenSchema } from './utility-
|
|
3
|
+
import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullGraphAgentInsertSchema } from './utility-Fxoh7s82.cjs';
|
|
4
|
+
export { e as AgentStopWhen, b as AgentStopWhenSchema, g as CredentialStoreType, i as FunctionApiSelectSchema, j as FunctionApiUpdateSchema, d as GraphStopWhen, G as GraphStopWhenSchema, h as MCPTransportType, f as ModelSettings, M as ModelSettingsSchema, k as SandboxConfigSchema, c as StopWhen, S as StopWhenSchema } from './utility-Fxoh7s82.cjs';
|
|
4
5
|
export { v as validatePropsAsJsonSchema } from './props-validation-BMR1qNiy.cjs';
|
|
5
6
|
import 'drizzle-zod';
|
|
6
7
|
import 'drizzle-orm/sqlite-core';
|
|
@@ -156,14 +157,14 @@ declare const AgentGraphApiInsertSchema: z.ZodObject<{
|
|
|
156
157
|
id: z.ZodOptional<z.ZodString>;
|
|
157
158
|
name: z.ZodString;
|
|
158
159
|
description: z.ZodOptional<z.ZodString>;
|
|
159
|
-
|
|
160
|
+
defaultSubAgentId: z.ZodOptional<z.ZodString>;
|
|
160
161
|
}, z.core.$strip>;
|
|
161
162
|
declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
162
163
|
id: z.ZodOptional<z.ZodString>;
|
|
163
164
|
name: z.ZodString;
|
|
164
165
|
description: z.ZodOptional<z.ZodString>;
|
|
165
|
-
|
|
166
|
-
|
|
166
|
+
defaultSubAgentId: z.ZodOptional<z.ZodString>;
|
|
167
|
+
subAgents: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
167
168
|
id: z.ZodString;
|
|
168
169
|
name: z.ZodString;
|
|
169
170
|
description: z.ZodString;
|
package/dist/client-exports.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
export { h as ACTIVITY_NAMES, f as ACTIVITY_STATUS, e as ACTIVITY_TYPES, g as AGENT_IDS, p as AGGREGATE_OPERATORS, A as AI_OPERATIONS, j as AI_TOOL_TYPES, o as DATA_SOURCES, k as DATA_TYPES, D as DELEGATION_FROM_SUB_AGENT_ID, b as DELEGATION_ID, a as DELEGATION_TO_SUB_AGENT_ID, F as FIELD_TYPES, O as OPERATORS, m as ORDER_DIRECTIONS, P as PANEL_TYPES, q as QUERY_DEFAULTS, l as QUERY_EXPRESSIONS, Q as QUERY_FIELD_CONFIGS, n as QUERY_TYPES, R as REDUCE_OPERATIONS, d as SPAN_KEYS, S as SPAN_NAMES, i as TOOL_NAMES, T as TRANSFER_FROM_SUB_AGENT_ID, c as TRANSFER_TO_SUB_AGENT_ID, U as UNKNOWN_VALUE } from './signoz-queries-CifqdbnO.js';
|
|
1
2
|
import { z } from 'zod';
|
|
2
|
-
import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullGraphAgentInsertSchema } from './utility-
|
|
3
|
-
export { e as AgentStopWhen, b as AgentStopWhenSchema, g as CredentialStoreType, i as FunctionApiSelectSchema, j as FunctionApiUpdateSchema, d as GraphStopWhen, G as GraphStopWhenSchema, h as MCPTransportType, f as ModelSettings, M as ModelSettingsSchema, k as SandboxConfigSchema, c as StopWhen, S as StopWhenSchema } from './utility-
|
|
3
|
+
import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullGraphAgentInsertSchema } from './utility-Fxoh7s82.js';
|
|
4
|
+
export { e as AgentStopWhen, b as AgentStopWhenSchema, g as CredentialStoreType, i as FunctionApiSelectSchema, j as FunctionApiUpdateSchema, d as GraphStopWhen, G as GraphStopWhenSchema, h as MCPTransportType, f as ModelSettings, M as ModelSettingsSchema, k as SandboxConfigSchema, c as StopWhen, S as StopWhenSchema } from './utility-Fxoh7s82.js';
|
|
4
5
|
export { v as validatePropsAsJsonSchema } from './props-validation-BMR1qNiy.js';
|
|
5
6
|
import 'drizzle-zod';
|
|
6
7
|
import 'drizzle-orm/sqlite-core';
|
|
@@ -156,14 +157,14 @@ declare const AgentGraphApiInsertSchema: z.ZodObject<{
|
|
|
156
157
|
id: z.ZodOptional<z.ZodString>;
|
|
157
158
|
name: z.ZodString;
|
|
158
159
|
description: z.ZodOptional<z.ZodString>;
|
|
159
|
-
|
|
160
|
+
defaultSubAgentId: z.ZodOptional<z.ZodString>;
|
|
160
161
|
}, z.core.$strip>;
|
|
161
162
|
declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
162
163
|
id: z.ZodOptional<z.ZodString>;
|
|
163
164
|
name: z.ZodString;
|
|
164
165
|
description: z.ZodOptional<z.ZodString>;
|
|
165
|
-
|
|
166
|
-
|
|
166
|
+
defaultSubAgentId: z.ZodOptional<z.ZodString>;
|
|
167
|
+
subAgents: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
167
168
|
id: z.ZodString;
|
|
168
169
|
name: z.ZodString;
|
|
169
170
|
description: z.ZodString;
|
package/dist/client-exports.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
export { ACTIVITY_NAMES, ACTIVITY_STATUS, ACTIVITY_TYPES, AGENT_IDS, AGGREGATE_OPERATORS, AI_OPERATIONS, AI_TOOL_TYPES, DATA_SOURCES, DATA_TYPES, DELEGATION_FROM_SUB_AGENT_ID, DELEGATION_ID, DELEGATION_TO_SUB_AGENT_ID, FIELD_TYPES, OPERATORS, ORDER_DIRECTIONS, PANEL_TYPES, QUERY_DEFAULTS, QUERY_EXPRESSIONS, QUERY_FIELD_CONFIGS, QUERY_TYPES, REDUCE_OPERATIONS, SPAN_KEYS, SPAN_NAMES, TOOL_NAMES, TRANSFER_FROM_SUB_AGENT_ID, TRANSFER_TO_SUB_AGENT_ID, UNKNOWN_VALUE } from './chunk-TCLX6C3C.js';
|
|
2
|
+
import { ModelSettingsSchema, FullGraphAgentInsertSchema, ArtifactComponentApiInsertSchema } from './chunk-E4SFK6AI.js';
|
|
3
|
+
export { SubAgentStopWhenSchema as AgentStopWhenSchema, FunctionApiInsertSchema, FunctionApiSelectSchema, FunctionApiUpdateSchema, GraphStopWhenSchema, ModelSettingsSchema, SandboxConfigSchema, StopWhenSchema, validatePropsAsJsonSchema } from './chunk-E4SFK6AI.js';
|
|
3
4
|
import { CredentialStoreType } from './chunk-YFHT5M2R.js';
|
|
4
5
|
export { CredentialStoreType, MCPTransportType } from './chunk-YFHT5M2R.js';
|
|
5
6
|
import { z } from 'zod';
|
|
@@ -110,10 +111,10 @@ var AgentGraphApiInsertSchema = z.object({
|
|
|
110
111
|
id: z.string().optional(),
|
|
111
112
|
name: z.string(),
|
|
112
113
|
description: z.string().optional(),
|
|
113
|
-
|
|
114
|
+
defaultSubAgentId: z.string().optional()
|
|
114
115
|
});
|
|
115
116
|
var FullGraphDefinitionSchema = AgentGraphApiInsertSchema.extend({
|
|
116
|
-
|
|
117
|
+
subAgents: z.record(
|
|
117
118
|
z.string(),
|
|
118
119
|
z.union([
|
|
119
120
|
FullGraphAgentInsertSchema,
|