Table of Contents

Class ScoredChunkInfo

Namespace
Mythosia.AI.Rag.Diagnostics
Assembly
Mythosia.AI.Rag.dll

A single chunk with its diagnostic annotations.

public class ScoredChunkInfo
Inheritance
ScoredChunkInfo
Inherited Members

Constructors

ScoredChunkInfo(int, VectorRecord, double, bool, bool, bool, string)

public ScoredChunkInfo(int rank, VectorRecord record, double score, bool isInTopK, bool passesMinScore, bool containsTarget, string preview)

Parameters

rank int
record VectorRecord
score double
isInTopK bool
passesMinScore bool
containsTarget bool
preview string

Properties

ContainsTarget

public bool ContainsTarget { get; }

Property Value

bool

IsInTopK

public bool IsInTopK { get; }

Property Value

bool

PassesMinScore

public bool PassesMinScore { get; }

Property Value

bool

Preview

public string Preview { get; }

Property Value

string

Rank

public int Rank { get; }

Property Value

int

Record

public VectorRecord Record { get; }

Property Value

VectorRecord

Score

public double Score { get; }

Property Value

double