open-agents-ai 0.103.52 → 0.103.53
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.js +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -37263,6 +37263,8 @@ function emotionColor(emotion, stark = false, autist = false) {
|
|
|
37263
37263
|
return "";
|
|
37264
37264
|
}
|
|
37265
37265
|
function describeToolCall(toolName, args, personality = 2, emotion, stark = false) {
|
|
37266
|
+
if (toolName === "task_complete")
|
|
37267
|
+
return "";
|
|
37266
37268
|
const path = args["path"];
|
|
37267
37269
|
const file = path ? path.split("/").pop() ?? path : "";
|
|
37268
37270
|
const tier = getTier(personality);
|
package/package.json
CHANGED