Files
OpenQuery/Models/Chunk.cs
2026-03-18 09:28:14 +01:00

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; }
}