@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 CHANGED
@@ -398,6 +398,9 @@ var WebInspectorElement = class extends lit.LitElement {
398
398
  onAgentsChanged: ({ agents }) => {
399
399
  this.processAgentsChanged(agents);
400
400
  },
401
+ onAgentRunStarted: ({ agent }) => {
402
+ if (agent?.agentId) this.subscribeToAgent(agent);
403
+ },
401
404
  onContextChanged: ({ context }) => {
402
405
  this.contextStore = this.normalizeContextStore(context);
403
406
  this.requestUpdate();