1 instantiation of IndexedDocument
aspire (1)
Mcp\Docs\DocsIndexService.cs (1)
144
_indexedDocuments = [.. documents.Select(static d => new
IndexedDocument
(d))];
4 references to IndexedDocument
aspire (4)
Mcp\Docs\DocsIndexService.cs (4)
110
private List<
IndexedDocument
>? _indexedDocuments;
193
foreach (
var
doc in _indexedDocuments)
227
var
doc = _indexedDocuments.FirstOrDefault(d =>
260
private static (float Score, string? MatchedSection) ScoreDocument(
IndexedDocument
doc, string[] queryTokens)