(
streamId: string,
messageId: string,
content: string,
context?: ChatClientRunEventContext,
)
| 1669 | // -- methods with run context -------------------------------------------- |
| 1670 | |
| 1671 | override textUpdated( |
| 1672 | streamId: string, |
| 1673 | messageId: string, |
| 1674 | content: string, |
| 1675 | context?: ChatClientRunEventContext, |
| 1676 | ): void { |
| 1677 | super.textUpdated( |
| 1678 | streamId, |
| 1679 | messageId, |
| 1680 | content, |
| 1681 | context ?? this.helper.getCurrentRunEventContext(), |
| 1682 | ) |
| 1683 | this.afterEmit(streamId) |
| 1684 | } |
| 1685 | |
| 1686 | override thinkingUpdated( |
| 1687 | streamId: string, |
no test coverage detected