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.
Files changed (2) hide show
  1. package/dist/index.js +2 -0
  2. 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.103.52",
3
+ "version": "0.103.53",
4
4
  "description": "AI coding agent powered by open-source models (Ollama/vLLM) — interactive TUI with agentic tool-calling loop",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",