@inkeep/agents-run-api 0.18.1 → 0.19.1
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/dist/{chunk-DQQRVSJS.js → chunk-QRT6EIUX.js} +6 -6
- package/dist/{conversations-JSORLLWS.js → conversations-OFIM2WLJ.js} +1 -1
- package/dist/index.cjs +582 -548
- package/dist/index.js +578 -541
- package/package.json +4 -3
- package/templates/v1/phase1/system-prompt.xml +1 -1
- package/templates/v1/shared/artifact-retrieval-guidance.xml +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-run-api",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.19.1",
|
|
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.11",
|
|
54
|
-
"@inkeep/agents-core": "^0.
|
|
54
|
+
"@inkeep/agents-core": "^0.19.1"
|
|
55
55
|
},
|
|
56
56
|
"optionalDependencies": {
|
|
57
57
|
"keytar": "^7.9.0"
|
|
@@ -101,6 +101,7 @@
|
|
|
101
101
|
"test:ci": "vitest --run --config vitest.config.ci.ts",
|
|
102
102
|
"test:watch": "vitest",
|
|
103
103
|
"test:coverage": "vitest --run --coverage",
|
|
104
|
-
"typecheck": "tsc --noEmit"
|
|
104
|
+
"typecheck": "tsc --noEmit",
|
|
105
|
+
"typecheck:watch": "tsc --noEmit --watch"
|
|
105
106
|
}
|
|
106
107
|
}
|
|
@@ -54,4 +54,4 @@ When you use delegation tools, the response may include artifacts in the parts a
|
|
|
54
54
|
These artifacts become immediately available for you to reference using the artifactId and toolCallId from the response.
|
|
55
55
|
Present delegation results naturally without mentioning the delegation process itself.
|
|
56
56
|
|
|
57
|
-
IMPORTANT: All agents can retrieve and use information from existing artifacts when the
|
|
57
|
+
IMPORTANT: All sub-agents can retrieve and use information from existing artifacts when the agent has artifact components, regardless of whether the individual agent or sub-agents can create new artifacts.
|