mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 23:53:38 +00:00
Co-authored-by: krut_ni <nils.kruthoff@dlr.de> Co-authored-by: Thorsten Sommer <SommerEngineering@users.noreply.github.com>
6 lines
544 B
C#
6 lines
544 B
C#
namespace AIStudio.Tools.ToolCallingSystem.ToolCallingImplementations;
|
|
|
|
/// <param name="Candidates">The search hits, already deduplicated and limited.</param>
|
|
/// <param name="CandidateCount">How many hits the instance returned within the requested limit.</param>
|
|
/// <param name="UnresponsiveEngines">The engines that did not answer, each with its reason when the instance gave one.</param>
|
|
internal sealed record SearXNGSearchResponse(IReadOnlyList<SearchCandidate> Candidates, int CandidateCount, IReadOnlyList<string> UnresponsiveEngines); |