15 lines
508 B
C#
15 lines
508 B
C#
namespace CvMatcher.Models.Responses
|
|
{
|
|
public sealed class RagIndexResponse
|
|
{
|
|
public required string DocumentId { get; init; }
|
|
public required string TextHash { get; init; }
|
|
public required string DocumentType { get; init; }
|
|
public double DocumentTypeConfidence { get; init; }
|
|
public required string Title { get; init; }
|
|
public int Chunks { get; init; }
|
|
public int Characters { get; init; }
|
|
public bool Cached { get; init; }
|
|
}
|
|
}
|