We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a791600 commit 8f6e50dCopy full SHA for 8f6e50d
tests/BotSharp.LLM.Tests/Core/TestAgentService.cs
@@ -1,4 +1,4 @@
1
-using BotSharp.Abstraction.Agents;
+using BotSharp.Abstraction.Agents;
2
using BotSharp.Abstraction.Agents.Enums;
3
using BotSharp.Abstraction.Agents.Models;
4
using BotSharp.Abstraction.Functions.Models;
@@ -26,7 +26,7 @@ public Task<PagedItems<Agent>> GetAgents(AgentFilter filter)
26
return Task.FromResult(new PagedItems<Agent>());
27
}
28
29
- public Task<List<IdName>> GetAgentOptions(List<string>? agentIds = null)
+ public Task<List<IdName>> GetAgentOptions(List<string>? agentIds = null, bool byName = false)
30
{
31
return Task.FromResult(new List<IdName> { new IdName(id: "1", name: "Fake Agent") });
32
0 commit comments