@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.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();
|