@inkeep/agents-core 0.0.0-dev-20250912012315 → 0.0.0-dev-20250912142126
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/client-exports.d.cts +3 -3
- package/dist/client-exports.d.ts +3 -3
- package/dist/db/schema.d.cts +2 -2
- package/dist/db/schema.d.ts +2 -2
- package/dist/index.cjs +1 -5
- package/dist/index.d.cts +124 -124
- package/dist/index.d.ts +124 -124
- package/dist/index.js +1 -5
- package/dist/{schema-BhCjDbs3.d.ts → schema-DFDqtBpV.d.ts} +1 -1
- package/dist/{schema-2Sd93dmu.d.cts → schema-Dbc3UMpd.d.cts} +1 -1
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/validation/index.d.cts +2 -2
- package/dist/validation/index.d.ts +2 -2
- package/package.json +2 -2
- package/dist/{entities-BbN3GqYV.d.cts → entities-CNJaf-rG.d.cts} +114 -114
- package/dist/{entities-BbN3GqYV.d.ts → entities-CNJaf-rG.d.ts} +114 -114
package/README.md
CHANGED
|
@@ -170,14 +170,14 @@ Tests use in-memory SQLite databases for isolation and speed.
|
|
|
170
170
|
|
|
171
171
|
This package is designed to support a multi-service architecture:
|
|
172
172
|
|
|
173
|
-
###
|
|
173
|
+
### Agents Manage API
|
|
174
174
|
Handles CRUD operations and entity management:
|
|
175
175
|
- Creating/updating agents
|
|
176
176
|
- Managing agent relationships
|
|
177
177
|
- Configuring tools
|
|
178
178
|
- Database migrations
|
|
179
179
|
|
|
180
|
-
###
|
|
180
|
+
### Agents Run API
|
|
181
181
|
Handles runtime operations:
|
|
182
182
|
- Processing conversations
|
|
183
183
|
- Executing tasks
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export { C as CredentialStoreType, M as MCPTransportType } from './entities-
|
|
2
|
+
export { C as CredentialStoreType, M as MCPTransportType } from './entities-CNJaf-rG.cjs';
|
|
3
3
|
import 'drizzle-zod';
|
|
4
4
|
import 'drizzle-orm/sqlite-core';
|
|
5
5
|
import '@hono/zod-openapi';
|
|
@@ -74,8 +74,8 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
74
74
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
75
75
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
76
76
|
type: z.ZodOptional<z.ZodEnum<{
|
|
77
|
-
external: "external";
|
|
78
77
|
internal: "internal";
|
|
78
|
+
external: "external";
|
|
79
79
|
}>>;
|
|
80
80
|
}, z.core.$strip>;
|
|
81
81
|
declare const ToolApiInsertSchema: z.ZodObject<{
|
|
@@ -189,8 +189,8 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
189
189
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
190
190
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
191
191
|
type: z.ZodOptional<z.ZodEnum<{
|
|
192
|
-
external: "external";
|
|
193
192
|
internal: "internal";
|
|
193
|
+
external: "external";
|
|
194
194
|
}>>;
|
|
195
195
|
models: z.ZodOptional<z.ZodObject<{
|
|
196
196
|
base: z.ZodOptional<z.ZodObject<{
|
package/dist/client-exports.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export { C as CredentialStoreType, M as MCPTransportType } from './entities-
|
|
2
|
+
export { C as CredentialStoreType, M as MCPTransportType } from './entities-CNJaf-rG.js';
|
|
3
3
|
import 'drizzle-zod';
|
|
4
4
|
import 'drizzle-orm/sqlite-core';
|
|
5
5
|
import '@hono/zod-openapi';
|
|
@@ -74,8 +74,8 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
74
74
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
75
75
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
76
76
|
type: z.ZodOptional<z.ZodEnum<{
|
|
77
|
-
external: "external";
|
|
78
77
|
internal: "internal";
|
|
78
|
+
external: "external";
|
|
79
79
|
}>>;
|
|
80
80
|
}, z.core.$strip>;
|
|
81
81
|
declare const ToolApiInsertSchema: z.ZodObject<{
|
|
@@ -189,8 +189,8 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
189
189
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
190
190
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
191
191
|
type: z.ZodOptional<z.ZodEnum<{
|
|
192
|
-
external: "external";
|
|
193
192
|
internal: "internal";
|
|
193
|
+
external: "external";
|
|
194
194
|
}>>;
|
|
195
195
|
models: z.ZodOptional<z.ZodObject<{
|
|
196
196
|
base: z.ZodOptional<z.ZodObject<{
|
package/dist/db/schema.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import 'drizzle-orm';
|
|
2
2
|
import 'drizzle-orm/sqlite-core';
|
|
3
|
-
import '../entities-
|
|
4
|
-
export { k as agentArtifactComponents, N as agentArtifactComponentsRelations, i as agentDataComponents, f as agentGraph, E as agentGraphRelations, d as agentRelations, O as agentRelationsRelations, m as agentToolRelations, H as agentToolRelationsRelations, b as agents, D as agentsRelations, r as apiKeys, G as apiKeysRelations, j as artifactComponents, M as artifactComponentsRelations, a as contextCache, C as contextCacheRelations, c as contextConfigs, B as contextConfigsRelations, n as conversations, K as conversationsRelations, u as credentialReferences, I as credentialReferencesRelations, h as dataComponents, e as externalAgents, F as externalAgentsRelations, q as ledgerArtifacts, w as ledgerArtifactsContextIdIdx, x as ledgerArtifactsTaskContextNameUnique, v as ledgerArtifactsTaskIdIdx, o as messages, L as messagesRelations, p as projects, z as projectsRelations, g as taskRelations, A as taskRelationsRelations, t as tasks, y as tasksRelations, l as tools, J as toolsRelations } from '../schema-
|
|
3
|
+
import '../entities-CNJaf-rG.cjs';
|
|
4
|
+
export { k as agentArtifactComponents, N as agentArtifactComponentsRelations, i as agentDataComponents, f as agentGraph, E as agentGraphRelations, d as agentRelations, O as agentRelationsRelations, m as agentToolRelations, H as agentToolRelationsRelations, b as agents, D as agentsRelations, r as apiKeys, G as apiKeysRelations, j as artifactComponents, M as artifactComponentsRelations, a as contextCache, C as contextCacheRelations, c as contextConfigs, B as contextConfigsRelations, n as conversations, K as conversationsRelations, u as credentialReferences, I as credentialReferencesRelations, h as dataComponents, e as externalAgents, F as externalAgentsRelations, q as ledgerArtifacts, w as ledgerArtifactsContextIdIdx, x as ledgerArtifactsTaskContextNameUnique, v as ledgerArtifactsTaskIdIdx, o as messages, L as messagesRelations, p as projects, z as projectsRelations, g as taskRelations, A as taskRelationsRelations, t as tasks, y as tasksRelations, l as tools, J as toolsRelations } from '../schema-Dbc3UMpd.cjs';
|
|
5
5
|
import 'zod';
|
|
6
6
|
import 'drizzle-zod';
|
|
7
7
|
import '@hono/zod-openapi';
|
package/dist/db/schema.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import 'drizzle-orm';
|
|
2
2
|
import 'drizzle-orm/sqlite-core';
|
|
3
|
-
import '../entities-
|
|
4
|
-
export { k as agentArtifactComponents, N as agentArtifactComponentsRelations, i as agentDataComponents, f as agentGraph, E as agentGraphRelations, d as agentRelations, O as agentRelationsRelations, m as agentToolRelations, H as agentToolRelationsRelations, b as agents, D as agentsRelations, r as apiKeys, G as apiKeysRelations, j as artifactComponents, M as artifactComponentsRelations, a as contextCache, C as contextCacheRelations, c as contextConfigs, B as contextConfigsRelations, n as conversations, K as conversationsRelations, u as credentialReferences, I as credentialReferencesRelations, h as dataComponents, e as externalAgents, F as externalAgentsRelations, q as ledgerArtifacts, w as ledgerArtifactsContextIdIdx, x as ledgerArtifactsTaskContextNameUnique, v as ledgerArtifactsTaskIdIdx, o as messages, L as messagesRelations, p as projects, z as projectsRelations, g as taskRelations, A as taskRelationsRelations, t as tasks, y as tasksRelations, l as tools, J as toolsRelations } from '../schema-
|
|
3
|
+
import '../entities-CNJaf-rG.js';
|
|
4
|
+
export { k as agentArtifactComponents, N as agentArtifactComponentsRelations, i as agentDataComponents, f as agentGraph, E as agentGraphRelations, d as agentRelations, O as agentRelationsRelations, m as agentToolRelations, H as agentToolRelationsRelations, b as agents, D as agentsRelations, r as apiKeys, G as apiKeysRelations, j as artifactComponents, M as artifactComponentsRelations, a as contextCache, C as contextCacheRelations, c as contextConfigs, B as contextConfigsRelations, n as conversations, K as conversationsRelations, u as credentialReferences, I as credentialReferencesRelations, h as dataComponents, e as externalAgents, F as externalAgentsRelations, q as ledgerArtifacts, w as ledgerArtifactsContextIdIdx, x as ledgerArtifactsTaskContextNameUnique, v as ledgerArtifactsTaskIdIdx, o as messages, L as messagesRelations, p as projects, z as projectsRelations, g as taskRelations, A as taskRelationsRelations, t as tasks, y as tasksRelations, l as tools, J as toolsRelations } from '../schema-DFDqtBpV.js';
|
|
5
5
|
import 'zod';
|
|
6
6
|
import 'drizzle-zod';
|
|
7
7
|
import '@hono/zod-openapi';
|
package/dist/index.cjs
CHANGED
|
@@ -7191,12 +7191,8 @@ function getTracer(serviceName, serviceVersion) {
|
|
|
7191
7191
|
}
|
|
7192
7192
|
}
|
|
7193
7193
|
|
|
7194
|
-
// package.json
|
|
7195
|
-
var package_default = {
|
|
7196
|
-
version: "0.0.0-dev-20250912012315"};
|
|
7197
|
-
|
|
7198
7194
|
// src/utils/tracer.ts
|
|
7199
|
-
var tracer = getTracer("agents-core"
|
|
7195
|
+
var tracer = getTracer("agents-core");
|
|
7200
7196
|
var logger5 = getLogger("context-cache");
|
|
7201
7197
|
var ContextCache = class {
|
|
7202
7198
|
constructor(tenantId, projectId, dbClient) {
|