@inkeep/agents-core 0.22.2 → 0.22.4

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.
@@ -4,11 +4,11 @@ var ANTHROPIC_MODELS = {
4
4
  CLAUDE_OPUS_4_1_20250805: "anthropic/claude-opus-4-1-20250805",
5
5
  CLAUDE_SONNET_4_5: "anthropic/claude-sonnet-4-5",
6
6
  CLAUDE_SONNET_4_5_20250929: "anthropic/claude-sonnet-4-5-20250929",
7
- CLAUDE_SONNET_4: "anthropic/claude-sonnet-4",
7
+ CLAUDE_SONNET_4: "anthropic/claude-sonnet-4-0",
8
8
  CLAUDE_SONNET_4_20250514: "anthropic/claude-sonnet-4-20250514",
9
- CLAUDE_3_5_SONNET: "anthropic/claude-3-5-sonnet",
10
- CLAUDE_3_5_SONNET_20241022: "anthropic/claude-3-5-sonnet-20241022",
11
- CLAUDE_3_5_HAIKU: "anthropic/claude-3-5-haiku",
9
+ CLAUDE_HAIKU_4_5: "anthropic/claude-haiku-4-5",
10
+ CLAUDE_HAIKU_4_5_20251001: "anthropic/claude-haiku-4-5-20251001",
11
+ CLAUDE_3_5_HAIKU: "anthropic/claude-3-5-haiku-latest",
12
12
  CLAUDE_3_5_HAIKU_20241022: "anthropic/claude-3-5-haiku-20241022"
13
13
  };
14
14
  var OPENAI_MODELS = {
@@ -2116,9 +2116,6 @@ var FullAgentDefinitionSchema = AgentAgentApiInsertSchema.extend({
2116
2116
  })
2117
2117
  ])
2118
2118
  ),
2119
- // Removed project-scoped resources - these are now managed at project level:
2120
- // tools, credentialReferences, dataComponents, artifactComponents
2121
- // Agent relationships to these resources are maintained vian agent.tools, agent.dataComponents, etc.
2122
2119
  contextConfig: zod.z.optional(ContextConfigApiInsertSchema2),
2123
2120
  models: zod.z.object({
2124
2121
  base: zod.z.object({
@@ -1,7 +1,7 @@
1
1
  export { h as ACTIVITY_NAMES, f as ACTIVITY_STATUS, e as ACTIVITY_TYPES, g as AGENT_IDS, o as AGGREGATE_OPERATORS, A as AI_OPERATIONS, i as AI_TOOL_TYPES, n as DATA_SOURCES, j 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, l as ORDER_DIRECTIONS, P as PANEL_TYPES, p as QUERY_DEFAULTS, k as QUERY_EXPRESSIONS, Q as QUERY_FIELD_CONFIGS, m as QUERY_TYPES, R as REDUCE_OPERATIONS, d as SPAN_KEYS, S as SPAN_NAMES, T as TRANSFER_FROM_SUB_AGENT_ID, c as TRANSFER_TO_SUB_AGENT_ID, U as UNKNOWN_VALUE } from './signoz-queries-Bqpkx5sK.cjs';
2
2
  import { z } from 'zod';
3
- import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullAgentAgentInsertSchema } from './utility-Ciw5NRcr.cjs';
4
- export { e as AgentStopWhen, b as AgentStopWhenSchema, h as CredentialStoreType, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, i as MCPTransportType, g as ModelSettings, M as ModelSettingsSchema, d as StopWhen, S as StopWhenSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema } from './utility-Ciw5NRcr.cjs';
3
+ import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullAgentAgentInsertSchema } from './utility-DmLVF565.cjs';
4
+ export { e as AgentStopWhen, b as AgentStopWhenSchema, h as CredentialStoreType, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, i as MCPTransportType, g as ModelSettings, M as ModelSettingsSchema, d as StopWhen, S as StopWhenSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema } from './utility-DmLVF565.cjs';
5
5
  export { v as validatePropsAsJsonSchema } from './props-validation-BMR1qNiy.cjs';
6
6
  import 'drizzle-zod';
7
7
  import 'drizzle-orm/sqlite-core';
@@ -128,8 +128,8 @@ declare const DataComponentApiInsertSchema: z.ZodObject<{
128
128
  props: z.ZodRecord<z.ZodString, z.ZodUnknown>;
129
129
  }, z.core.$strip>;
130
130
  declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
131
- name: z.ZodString;
132
131
  id: z.ZodString;
132
+ name: z.ZodString;
133
133
  description: z.ZodString;
134
134
  props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
135
135
  }, {
@@ -164,11 +164,12 @@ declare const FullAgentDefinitionSchema: z.ZodObject<{
164
164
  description: z.ZodOptional<z.ZodString>;
165
165
  defaultSubAgentId: z.ZodOptional<z.ZodString>;
166
166
  subAgents: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
167
- name: z.ZodString;
168
167
  id: z.ZodString;
168
+ name: z.ZodString;
169
+ description: z.ZodString;
170
+ prompt: z.ZodString;
169
171
  createdAt: z.ZodOptional<z.ZodString>;
170
172
  updatedAt: z.ZodOptional<z.ZodString>;
171
- description: z.ZodString;
172
173
  models: z.ZodOptional<z.ZodObject<{
173
174
  base: z.ZodOptional<z.ZodObject<{
174
175
  model: z.ZodOptional<z.ZodString>;
@@ -192,7 +193,6 @@ declare const FullAgentDefinitionSchema: z.ZodObject<{
192
193
  }, {
193
194
  stepCountIs?: number | undefined;
194
195
  }>>>>;
195
- prompt: z.ZodString;
196
196
  conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
197
197
  type: z.ZodLiteral<"internal">;
198
198
  canUse: z.ZodArray<z.ZodObject<{
@@ -1,7 +1,7 @@
1
1
  export { h as ACTIVITY_NAMES, f as ACTIVITY_STATUS, e as ACTIVITY_TYPES, g as AGENT_IDS, o as AGGREGATE_OPERATORS, A as AI_OPERATIONS, i as AI_TOOL_TYPES, n as DATA_SOURCES, j 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, l as ORDER_DIRECTIONS, P as PANEL_TYPES, p as QUERY_DEFAULTS, k as QUERY_EXPRESSIONS, Q as QUERY_FIELD_CONFIGS, m as QUERY_TYPES, R as REDUCE_OPERATIONS, d as SPAN_KEYS, S as SPAN_NAMES, T as TRANSFER_FROM_SUB_AGENT_ID, c as TRANSFER_TO_SUB_AGENT_ID, U as UNKNOWN_VALUE } from './signoz-queries-Bqpkx5sK.js';
2
2
  import { z } from 'zod';
3
- import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullAgentAgentInsertSchema } from './utility-Ciw5NRcr.js';
4
- export { e as AgentStopWhen, b as AgentStopWhenSchema, h as CredentialStoreType, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, i as MCPTransportType, g as ModelSettings, M as ModelSettingsSchema, d as StopWhen, S as StopWhenSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema } from './utility-Ciw5NRcr.js';
3
+ import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullAgentAgentInsertSchema } from './utility-DmLVF565.js';
4
+ export { e as AgentStopWhen, b as AgentStopWhenSchema, h as CredentialStoreType, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, i as MCPTransportType, g as ModelSettings, M as ModelSettingsSchema, d as StopWhen, S as StopWhenSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema } from './utility-DmLVF565.js';
5
5
  export { v as validatePropsAsJsonSchema } from './props-validation-BMR1qNiy.js';
6
6
  import 'drizzle-zod';
7
7
  import 'drizzle-orm/sqlite-core';
@@ -128,8 +128,8 @@ declare const DataComponentApiInsertSchema: z.ZodObject<{
128
128
  props: z.ZodRecord<z.ZodString, z.ZodUnknown>;
129
129
  }, z.core.$strip>;
130
130
  declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
131
- name: z.ZodString;
132
131
  id: z.ZodString;
132
+ name: z.ZodString;
133
133
  description: z.ZodString;
134
134
  props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
135
135
  }, {
@@ -164,11 +164,12 @@ declare const FullAgentDefinitionSchema: z.ZodObject<{
164
164
  description: z.ZodOptional<z.ZodString>;
165
165
  defaultSubAgentId: z.ZodOptional<z.ZodString>;
166
166
  subAgents: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
167
- name: z.ZodString;
168
167
  id: z.ZodString;
168
+ name: z.ZodString;
169
+ description: z.ZodString;
170
+ prompt: z.ZodString;
169
171
  createdAt: z.ZodOptional<z.ZodString>;
170
172
  updatedAt: z.ZodOptional<z.ZodString>;
171
- description: z.ZodString;
172
173
  models: z.ZodOptional<z.ZodObject<{
173
174
  base: z.ZodOptional<z.ZodObject<{
174
175
  model: z.ZodOptional<z.ZodString>;
@@ -192,7 +193,6 @@ declare const FullAgentDefinitionSchema: z.ZodObject<{
192
193
  }, {
193
194
  stepCountIs?: number | undefined;
194
195
  }>>>>;
195
- prompt: z.ZodString;
196
196
  conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
197
197
  type: z.ZodLiteral<"internal">;
198
198
  canUse: z.ZodArray<z.ZodObject<{
@@ -123,9 +123,6 @@ var FullAgentDefinitionSchema = AgentAgentApiInsertSchema.extend({
123
123
  })
124
124
  ])
125
125
  ),
126
- // Removed project-scoped resources - these are now managed at project level:
127
- // tools, credentialReferences, dataComponents, artifactComponents
128
- // Agent relationships to these resources are maintained vian agent.tools, agent.dataComponents, etc.
129
126
  contextConfig: z.optional(ContextConfigApiInsertSchema),
130
127
  models: z.object({
131
128
  base: z.object({
@@ -6,11 +6,11 @@ var ANTHROPIC_MODELS = {
6
6
  CLAUDE_OPUS_4_1_20250805: "anthropic/claude-opus-4-1-20250805",
7
7
  CLAUDE_SONNET_4_5: "anthropic/claude-sonnet-4-5",
8
8
  CLAUDE_SONNET_4_5_20250929: "anthropic/claude-sonnet-4-5-20250929",
9
- CLAUDE_SONNET_4: "anthropic/claude-sonnet-4",
9
+ CLAUDE_SONNET_4: "anthropic/claude-sonnet-4-0",
10
10
  CLAUDE_SONNET_4_20250514: "anthropic/claude-sonnet-4-20250514",
11
- CLAUDE_3_5_SONNET: "anthropic/claude-3-5-sonnet",
12
- CLAUDE_3_5_SONNET_20241022: "anthropic/claude-3-5-sonnet-20241022",
13
- CLAUDE_3_5_HAIKU: "anthropic/claude-3-5-haiku",
11
+ CLAUDE_HAIKU_4_5: "anthropic/claude-haiku-4-5",
12
+ CLAUDE_HAIKU_4_5_20251001: "anthropic/claude-haiku-4-5-20251001",
13
+ CLAUDE_3_5_HAIKU: "anthropic/claude-3-5-haiku-latest",
14
14
  CLAUDE_3_5_HAIKU_20241022: "anthropic/claude-3-5-haiku-20241022"
15
15
  };
16
16
  var OPENAI_MODELS = {
@@ -6,11 +6,11 @@ declare const ANTHROPIC_MODELS: {
6
6
  readonly CLAUDE_OPUS_4_1_20250805: "anthropic/claude-opus-4-1-20250805";
7
7
  readonly CLAUDE_SONNET_4_5: "anthropic/claude-sonnet-4-5";
8
8
  readonly CLAUDE_SONNET_4_5_20250929: "anthropic/claude-sonnet-4-5-20250929";
9
- readonly CLAUDE_SONNET_4: "anthropic/claude-sonnet-4";
9
+ readonly CLAUDE_SONNET_4: "anthropic/claude-sonnet-4-0";
10
10
  readonly CLAUDE_SONNET_4_20250514: "anthropic/claude-sonnet-4-20250514";
11
- readonly CLAUDE_3_5_SONNET: "anthropic/claude-3-5-sonnet";
12
- readonly CLAUDE_3_5_SONNET_20241022: "anthropic/claude-3-5-sonnet-20241022";
13
- readonly CLAUDE_3_5_HAIKU: "anthropic/claude-3-5-haiku";
11
+ readonly CLAUDE_HAIKU_4_5: "anthropic/claude-haiku-4-5";
12
+ readonly CLAUDE_HAIKU_4_5_20251001: "anthropic/claude-haiku-4-5-20251001";
13
+ readonly CLAUDE_3_5_HAIKU: "anthropic/claude-3-5-haiku-latest";
14
14
  readonly CLAUDE_3_5_HAIKU_20241022: "anthropic/claude-3-5-haiku-20241022";
15
15
  };
16
16
  declare const OPENAI_MODELS: {
@@ -6,11 +6,11 @@ declare const ANTHROPIC_MODELS: {
6
6
  readonly CLAUDE_OPUS_4_1_20250805: "anthropic/claude-opus-4-1-20250805";
7
7
  readonly CLAUDE_SONNET_4_5: "anthropic/claude-sonnet-4-5";
8
8
  readonly CLAUDE_SONNET_4_5_20250929: "anthropic/claude-sonnet-4-5-20250929";
9
- readonly CLAUDE_SONNET_4: "anthropic/claude-sonnet-4";
9
+ readonly CLAUDE_SONNET_4: "anthropic/claude-sonnet-4-0";
10
10
  readonly CLAUDE_SONNET_4_20250514: "anthropic/claude-sonnet-4-20250514";
11
- readonly CLAUDE_3_5_SONNET: "anthropic/claude-3-5-sonnet";
12
- readonly CLAUDE_3_5_SONNET_20241022: "anthropic/claude-3-5-sonnet-20241022";
13
- readonly CLAUDE_3_5_HAIKU: "anthropic/claude-3-5-haiku";
11
+ readonly CLAUDE_HAIKU_4_5: "anthropic/claude-haiku-4-5";
12
+ readonly CLAUDE_HAIKU_4_5_20251001: "anthropic/claude-haiku-4-5-20251001";
13
+ readonly CLAUDE_3_5_HAIKU: "anthropic/claude-3-5-haiku-latest";
14
14
  readonly CLAUDE_3_5_HAIKU_20241022: "anthropic/claude-3-5-haiku-20241022";
15
15
  };
16
16
  declare const OPENAI_MODELS: {
@@ -1 +1 @@
1
- export { ANTHROPIC_MODELS, GOOGLE_MODELS, OPENAI_MODELS } from '../chunk-TTIPV5QP.js';
1
+ export { ANTHROPIC_MODELS, GOOGLE_MODELS, OPENAI_MODELS } from '../chunk-MQTANAMG.js';
@@ -1,7 +1,7 @@
1
1
  import 'drizzle-orm';
2
2
  import 'drizzle-orm/sqlite-core';
3
- import '../utility-Ciw5NRcr.cjs';
4
- export { E as agentRelations, H as agentToolRelationsRelations, a as agents, w as apiKeys, G as apiKeysRelations, j as artifactComponents, M as artifactComponentsRelations, b as contextCache, C as contextCacheRelations, c as contextConfigs, B as contextConfigsRelations, r as conversations, K as conversationsRelations, x as credentialReferences, I as credentialReferencesRelations, h as dataComponents, O as dataComponentsRelations, f as externalAgents, F as externalAgentsRelations, m as functionTools, T as functionToolsRelations, n as functions, R as functionsRelations, v as ledgerArtifacts, Q as ledgerArtifactsRelations, u as messages, L as messagesRelations, p as projects, z as projectsRelations, k as subAgentArtifactComponents, N as subAgentArtifactComponentsRelations, i as subAgentDataComponents, P as subAgentDataComponentsRelations, q as subAgentFunctionToolRelations, U as subAgentFunctionToolRelationsRelations, e as subAgentRelations, S as subAgentRelationsRelations, o as subAgentToolRelations, d as subAgents, D as subAgentsRelations, g as taskRelations, A as taskRelationsRelations, t as tasks, y as tasksRelations, l as tools, J as toolsRelations } from '../schema-C-O4Dx8k.cjs';
3
+ import '../utility-DmLVF565.cjs';
4
+ export { E as agentRelations, H as agentToolRelationsRelations, a as agents, w as apiKeys, G as apiKeysRelations, j as artifactComponents, M as artifactComponentsRelations, b as contextCache, C as contextCacheRelations, c as contextConfigs, B as contextConfigsRelations, r as conversations, K as conversationsRelations, x as credentialReferences, I as credentialReferencesRelations, h as dataComponents, O as dataComponentsRelations, f as externalAgents, F as externalAgentsRelations, m as functionTools, T as functionToolsRelations, n as functions, R as functionsRelations, v as ledgerArtifacts, Q as ledgerArtifactsRelations, u as messages, L as messagesRelations, p as projects, z as projectsRelations, k as subAgentArtifactComponents, N as subAgentArtifactComponentsRelations, i as subAgentDataComponents, P as subAgentDataComponentsRelations, q as subAgentFunctionToolRelations, U as subAgentFunctionToolRelationsRelations, e as subAgentRelations, S as subAgentRelationsRelations, o as subAgentToolRelations, d as subAgents, D as subAgentsRelations, g as taskRelations, A as taskRelationsRelations, t as tasks, y as tasksRelations, l as tools, J as toolsRelations } from '../schema-lnJ7dKE3.cjs';
5
5
  import 'zod';
6
6
  import 'drizzle-zod';
7
7
  import '@hono/zod-openapi';
@@ -1,7 +1,7 @@
1
1
  import 'drizzle-orm';
2
2
  import 'drizzle-orm/sqlite-core';
3
- import '../utility-Ciw5NRcr.js';
4
- export { E as agentRelations, H as agentToolRelationsRelations, a as agents, w as apiKeys, G as apiKeysRelations, j as artifactComponents, M as artifactComponentsRelations, b as contextCache, C as contextCacheRelations, c as contextConfigs, B as contextConfigsRelations, r as conversations, K as conversationsRelations, x as credentialReferences, I as credentialReferencesRelations, h as dataComponents, O as dataComponentsRelations, f as externalAgents, F as externalAgentsRelations, m as functionTools, T as functionToolsRelations, n as functions, R as functionsRelations, v as ledgerArtifacts, Q as ledgerArtifactsRelations, u as messages, L as messagesRelations, p as projects, z as projectsRelations, k as subAgentArtifactComponents, N as subAgentArtifactComponentsRelations, i as subAgentDataComponents, P as subAgentDataComponentsRelations, q as subAgentFunctionToolRelations, U as subAgentFunctionToolRelationsRelations, e as subAgentRelations, S as subAgentRelationsRelations, o as subAgentToolRelations, d as subAgents, D as subAgentsRelations, g as taskRelations, A as taskRelationsRelations, t as tasks, y as tasksRelations, l as tools, J as toolsRelations } from '../schema-CjTRX20S.js';
3
+ import '../utility-DmLVF565.js';
4
+ export { E as agentRelations, H as agentToolRelationsRelations, a as agents, w as apiKeys, G as apiKeysRelations, j as artifactComponents, M as artifactComponentsRelations, b as contextCache, C as contextCacheRelations, c as contextConfigs, B as contextConfigsRelations, r as conversations, K as conversationsRelations, x as credentialReferences, I as credentialReferencesRelations, h as dataComponents, O as dataComponentsRelations, f as externalAgents, F as externalAgentsRelations, m as functionTools, T as functionToolsRelations, n as functions, R as functionsRelations, v as ledgerArtifacts, Q as ledgerArtifactsRelations, u as messages, L as messagesRelations, p as projects, z as projectsRelations, k as subAgentArtifactComponents, N as subAgentArtifactComponentsRelations, i as subAgentDataComponents, P as subAgentDataComponentsRelations, q as subAgentFunctionToolRelations, U as subAgentFunctionToolRelationsRelations, e as subAgentRelations, S as subAgentRelationsRelations, o as subAgentToolRelations, d as subAgents, D as subAgentsRelations, g as taskRelations, A as taskRelationsRelations, t as tasks, y as tasksRelations, l as tools, J as toolsRelations } from '../schema-9o975__r.js';
5
5
  import 'zod';
6
6
  import 'drizzle-zod';
7
7
  import '@hono/zod-openapi';
package/dist/index.cjs CHANGED
@@ -212903,11 +212903,11 @@ var ANTHROPIC_MODELS = {
212903
212903
  CLAUDE_OPUS_4_1_20250805: "anthropic/claude-opus-4-1-20250805",
212904
212904
  CLAUDE_SONNET_4_5: "anthropic/claude-sonnet-4-5",
212905
212905
  CLAUDE_SONNET_4_5_20250929: "anthropic/claude-sonnet-4-5-20250929",
212906
- CLAUDE_SONNET_4: "anthropic/claude-sonnet-4",
212906
+ CLAUDE_SONNET_4: "anthropic/claude-sonnet-4-0",
212907
212907
  CLAUDE_SONNET_4_20250514: "anthropic/claude-sonnet-4-20250514",
212908
- CLAUDE_3_5_SONNET: "anthropic/claude-3-5-sonnet",
212909
- CLAUDE_3_5_SONNET_20241022: "anthropic/claude-3-5-sonnet-20241022",
212910
- CLAUDE_3_5_HAIKU: "anthropic/claude-3-5-haiku",
212908
+ CLAUDE_HAIKU_4_5: "anthropic/claude-haiku-4-5",
212909
+ CLAUDE_HAIKU_4_5_20251001: "anthropic/claude-haiku-4-5-20251001",
212910
+ CLAUDE_3_5_HAIKU: "anthropic/claude-3-5-haiku-latest",
212911
212911
  CLAUDE_3_5_HAIKU_20241022: "anthropic/claude-3-5-haiku-20241022"
212912
212912
  };
212913
212913
  var OPENAI_MODELS = {