| 116 | * The session maintains all the turns between user and model. |
| 117 | */ |
| 118 | export class AnusChat { |
| 119 | // A promise to represent the current state of the message being sent to the |
| 120 | // model. |
| 121 | private sendPromise: Promise<void> = Promise.resolve(); |
nothing calls this directly
no outgoing calls
no test coverage detected