10 lines
265 B
C#
10 lines
265 B
C#
namespace CvMatcher.Models.Requests
|
|
{
|
|
public sealed class RagSearchRequest
|
|
{
|
|
public required string QueryText { get; init; }
|
|
public IReadOnlyList<string>? TargetDocumentTypes { get; init; }
|
|
public int? TopK { get; init; }
|
|
}
|
|
}
|