@inkeep/agents-run-api 0.11.2 → 0.11.3
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/index.cjs +9 -0
- package/dist/index.js +9 -0
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -3380,6 +3380,9 @@ Make it specific and relevant.`;
|
|
|
3380
3380
|
"llm.model": this.statusUpdateState?.summarizerModel?.model,
|
|
3381
3381
|
"llm.operation": "generate_object",
|
|
3382
3382
|
"artifact.id": artifactData.artifactId,
|
|
3383
|
+
"artifact.type": artifactData.artifactType,
|
|
3384
|
+
"artifact.summary": JSON.stringify(artifactData.summaryProps, null, 2),
|
|
3385
|
+
"artifact.full": JSON.stringify(artifactData.fullProps, null, 2),
|
|
3383
3386
|
"prompt.length": prompt.length
|
|
3384
3387
|
}
|
|
3385
3388
|
},
|
|
@@ -3405,6 +3408,12 @@ Make it specific and relevant.`;
|
|
|
3405
3408
|
}
|
|
3406
3409
|
});
|
|
3407
3410
|
generationSpan.setAttributes({
|
|
3411
|
+
"artifact.id": artifactData.artifactId,
|
|
3412
|
+
"artifact.type": artifactData.artifactType,
|
|
3413
|
+
"artifact.name": result2.object.name,
|
|
3414
|
+
"artifact.description": result2.object.description,
|
|
3415
|
+
"artifact.summary": JSON.stringify(artifactData.summaryProps, null, 2),
|
|
3416
|
+
"artifact.full": JSON.stringify(artifactData.fullProps, null, 2),
|
|
3408
3417
|
"generation.name_length": result2.object.name.length,
|
|
3409
3418
|
"generation.description_length": result2.object.description.length,
|
|
3410
3419
|
"generation.attempts": attempt
|
package/dist/index.js
CHANGED
|
@@ -2929,6 +2929,9 @@ Make it specific and relevant.`;
|
|
|
2929
2929
|
"llm.model": this.statusUpdateState?.summarizerModel?.model,
|
|
2930
2930
|
"llm.operation": "generate_object",
|
|
2931
2931
|
"artifact.id": artifactData.artifactId,
|
|
2932
|
+
"artifact.type": artifactData.artifactType,
|
|
2933
|
+
"artifact.summary": JSON.stringify(artifactData.summaryProps, null, 2),
|
|
2934
|
+
"artifact.full": JSON.stringify(artifactData.fullProps, null, 2),
|
|
2932
2935
|
"prompt.length": prompt.length
|
|
2933
2936
|
}
|
|
2934
2937
|
},
|
|
@@ -2954,6 +2957,12 @@ Make it specific and relevant.`;
|
|
|
2954
2957
|
}
|
|
2955
2958
|
});
|
|
2956
2959
|
generationSpan.setAttributes({
|
|
2960
|
+
"artifact.id": artifactData.artifactId,
|
|
2961
|
+
"artifact.type": artifactData.artifactType,
|
|
2962
|
+
"artifact.name": result2.object.name,
|
|
2963
|
+
"artifact.description": result2.object.description,
|
|
2964
|
+
"artifact.summary": JSON.stringify(artifactData.summaryProps, null, 2),
|
|
2965
|
+
"artifact.full": JSON.stringify(artifactData.fullProps, null, 2),
|
|
2957
2966
|
"generation.name_length": result2.object.name.length,
|
|
2958
2967
|
"generation.description_length": result2.object.description.length,
|
|
2959
2968
|
"generation.attempts": attempt
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-run-api",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.3",
|
|
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.11.
|
|
54
|
+
"@inkeep/agents-core": "^0.11.3"
|
|
55
55
|
},
|
|
56
56
|
"optionalDependencies": {
|
|
57
57
|
"keytar": "^7.9.0"
|