@inkeep/agents-run-api 0.10.2 → 0.11.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 CHANGED
@@ -29,18 +29,16 @@ This API handles the execution layer of the Inkeep Agent Framework:
29
29
  ## Development
30
30
 
31
31
  ### Setup
32
- If you do not have the db setup:
33
- ```bash
34
- cd packages/core
35
- pnpm db:push
36
- ```
37
-
38
- Then:
39
32
  ```bash
40
33
  cd agents-run-api
41
34
  pnpm install
42
35
  ```
43
36
 
37
+ If you do not have the database setup, run migrations from the monorepo root:
38
+ ```bash
39
+ pnpm db:migrate
40
+ ```
41
+
44
42
 
45
43
  ### Environment Variables
46
44
  ```env
package/dist/index.cjs CHANGED
@@ -769,6 +769,7 @@ async function handleMessageSend(c, agent, request) {
769
769
  id: task.id,
770
770
  tenantId: agent.tenantId,
771
771
  projectId: agent.projectId,
772
+ graphId: graphId || "",
772
773
  contextId: effectiveContextId,
773
774
  status: "working",
774
775
  metadata: {
@@ -9216,6 +9217,7 @@ var ExecutionHandler = class {
9216
9217
  id: taskId,
9217
9218
  tenantId,
9218
9219
  projectId,
9220
+ graphId,
9219
9221
  agentId: currentAgentId,
9220
9222
  contextId: conversationId,
9221
9223
  status: "pending",
package/dist/index.js CHANGED
@@ -346,6 +346,7 @@ async function handleMessageSend(c, agent, request) {
346
346
  id: task.id,
347
347
  tenantId: agent.tenantId,
348
348
  projectId: agent.projectId,
349
+ graphId: graphId || "",
349
350
  contextId: effectiveContextId,
350
351
  status: "working",
351
352
  metadata: {
@@ -8735,6 +8736,7 @@ var ExecutionHandler = class {
8735
8736
  id: taskId,
8736
8737
  tenantId,
8737
8738
  projectId,
8739
+ graphId,
8738
8740
  agentId: currentAgentId,
8739
8741
  contextId: conversationId,
8740
8742
  status: "pending",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-run-api",
3
- "version": "0.10.2",
3
+ "version": "0.11.0",
4
4
  "description": "Agents Run API for Inkeep Agent Framework - handles chat, agent execution, and streaming",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -51,7 +51,7 @@
51
51
  "traverse": "^0.6.11",
52
52
  "ts-pattern": "^5.7.1",
53
53
  "zod": "^4.1.5",
54
- "@inkeep/agents-core": "^0.10.2"
54
+ "@inkeep/agents-core": "^0.11.0"
55
55
  },
56
56
  "optionalDependencies": {
57
57
  "keytar": "^7.9.0"