Skip to content

Commit 8f6e50d

Browse files
author
Haiping Chen
committed
Fix compile issue
1 parent a791600 commit 8f6e50d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/BotSharp.LLM.Tests/Core/TestAgentService.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using BotSharp.Abstraction.Agents;
1+
using BotSharp.Abstraction.Agents;
22
using BotSharp.Abstraction.Agents.Enums;
33
using BotSharp.Abstraction.Agents.Models;
44
using BotSharp.Abstraction.Functions.Models;
@@ -26,7 +26,7 @@ public Task<PagedItems<Agent>> GetAgents(AgentFilter filter)
2626
return Task.FromResult(new PagedItems<Agent>());
2727
}
2828

29-
public Task<List<IdName>> GetAgentOptions(List<string>? agentIds = null)
29+
public Task<List<IdName>> GetAgentOptions(List<string>? agentIds = null, bool byName = false)
3030
{
3131
return Task.FromResult(new List<IdName> { new IdName(id: "1", name: "Fake Agent") });
3232
}

0 commit comments

Comments
 (0)