llmist 15.1.0 → 15.1.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/index.cjs CHANGED
@@ -13001,13 +13001,7 @@ var init_agent = __esm({
13001
13001
  return false;
13002
13002
  }
13003
13003
  if (finalMessage.trim()) {
13004
- const syntheticId = `gc_tell_${++this.syntheticInvocationCounter}`;
13005
- this.conversation.addGadgetCallResult(
13006
- "TellUser",
13007
- { message: finalMessage, done: false, type: "info" },
13008
- `\u2139\uFE0F ${finalMessage}`,
13009
- syntheticId
13010
- );
13004
+ this.conversation.addAssistantMessage(finalMessage);
13011
13005
  }
13012
13006
  return await this.handleTextOnlyResponse(finalMessage);
13013
13007
  }