(properties: Record<string, unknown>)
| 739 | } |
| 740 | |
| 741 | setProperties(properties: Record<string, unknown>): void { |
| 742 | this._properties = properties; |
| 743 | void this.notifySubscribers( |
| 744 | (subscriber) => |
| 745 | subscriber.onPropertiesChanged?.({ |
| 746 | copilotkit: this, |
| 747 | properties: this.properties, |
| 748 | }), |
| 749 | "Subscriber onPropertiesChanged error:", |
| 750 | ); |
| 751 | } |
| 752 | |
| 753 | /** |
| 754 | * Agent management (delegated to AgentRegistry) |
no test coverage detected