* Adds a new turn to the history. * Every turn must have a durable ID, usually provided by the ChatRecordingService.
(turn: HistoryTurn)
| 32 | * Every turn must have a durable ID, usually provided by the ChatRecordingService. |
| 33 | */ |
| 34 | push(turn: HistoryTurn) { |
| 35 | this.history.push(turn); |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Overwrites the entire history with a new list of turns. |
no outgoing calls