@yeaft/webchat-agent 0.1.1015 → 0.1.1016

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/package.json +1 -1
  2. package/yeaft/engine.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yeaft/webchat-agent",
3
- "version": "0.1.1015",
3
+ "version": "0.1.1016",
4
4
  "description": "Remote agent for Yeaft WebChat — connects worker machines to the central server",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/yeaft/engine.js CHANGED
@@ -1094,6 +1094,7 @@ export class Engine {
1094
1094
  threadId,
1095
1095
  ...(sessionId ? { sessionId } : {}),
1096
1096
  ...(this.#chatId ? { chatId: this.#chatId } : {}),
1097
+ ...(this.#vpId ? { speakerVpId: this.#vpId } : {}),
1097
1098
  };
1098
1099
  if (toolCalls && toolCalls.length > 0) {
1099
1100
  assistantMsg.toolCalls = toolCalls;