@copilotkit/web-inspector 1.55.2 → 1.55.3-canary.1776243725
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 +3 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +3 -0
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +3 -0
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +8 -0
package/dist/index.umd.js
CHANGED
|
@@ -527,6 +527,9 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
527
527
|
onAgentsChanged: ({ agents }) => {
|
|
528
528
|
this.processAgentsChanged(agents);
|
|
529
529
|
},
|
|
530
|
+
onAgentRunStarted: ({ agent }) => {
|
|
531
|
+
if (agent === null || agent === void 0 ? void 0 : agent.agentId) this.subscribeToAgent(agent);
|
|
532
|
+
},
|
|
530
533
|
onContextChanged: ({ context }) => {
|
|
531
534
|
this.contextStore = this.normalizeContextStore(context);
|
|
532
535
|
this.requestUpdate();
|