initial release

This commit is contained in:
2026-03-18 09:28:14 +01:00
commit 9d4bec7a17
18 changed files with 914 additions and 0 deletions

11
Models/Chunk.cs Normal file
View File

@@ -0,0 +1,11 @@
namespace OpenQuery.Models;
public record Chunk(
string Content,
string SourceUrl,
string? Title = null
)
{
public float[]? Embedding { get; set; }
public float Score { get; set; }
}