Change FollowupProvider to take a ChatContext. (#206611)

* Change FollowupProvider to take a ChatContext.
Also fix #205761

* Update test
This commit is contained in:
Rob Lourens
2024-03-01 11:32:52 -03:00
committed by GitHub
parent be59ec51ee
commit bd79cb3a46
8 changed files with 21 additions and 18 deletions

View File

@@ -98,7 +98,7 @@ suite('chat', () => {
});
participant.isDefault = true;
participant.followupProvider = {
provideFollowups(result, _token) {
provideFollowups(result, _context, _token) {
deferred.complete(result);
return [];
},