11 lines
203 B
C#
11 lines
203 B
C#
namespace OpenQuery.Models;
|
|
|
|
public record Chunk(
|
|
string Content,
|
|
string SourceUrl,
|
|
string? Title = null
|
|
)
|
|
{
|
|
public float[]? Embedding { get; set; }
|
|
public float Score { get; set; }
|
|
} |