Remove CreateSession from ShouldConnect_Tests

This commit is contained in:
Haiping Chen 2025-04-05 17:15:16 -05:00
parent 019be0113d
commit 34a8234b1a

View file

@ -1,4 +1,4 @@
using BotSharp.Abstraction.Agents.Enums;
using BotSharp.Abstraction.Agents.Enums;
using BotSharp.Abstraction.Agents.Models;
using BotSharp.Abstraction.Conversations.Models;
using BotSharp.Abstraction.MLTasks;
@ -45,7 +45,6 @@ namespace BotSharp.Plugin.Google.Core
(list => { Console.WriteLine(list); }),
(s => { Console.WriteLine(s); }),
(model => { Console.WriteLine(model); }), (() => { Console.WriteLine("UserInterrupted"); }));
var session = await realTimeCompleter.CreateSession(agent, new List<RoleDialogModel>());
Thread.Sleep(1000);
modelReady.ShouldBeTrue();