initial release
This commit is contained in:
11
Models/Chunk.cs
Normal file
11
Models/Chunk.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user