3 implementations of SearchAsync
aspire (1)
Documentation\Docs\DocsIndexService.cs (1)
309public async ValueTask<IReadOnlyList<DocsSearchResult>> SearchAsync(string query, int topK = 10, CancellationToken cancellationToken = default)
Aspire.Cli.Tests (2)
Commands\DocsCommandTests.cs (1)
291public ValueTask<IReadOnlyList<DocsSearchResult>> SearchAsync(string query, int topK = 10, CancellationToken cancellationToken = default)
Mcp\TestDocsIndexService.cs (1)
73public ValueTask<IReadOnlyList<DocsSearchResult>> SearchAsync(string query, int topK = 10, CancellationToken cancellationToken = default)
1 reference to SearchAsync
aspire (1)
Documentation\Docs\DocsSearchService.cs (1)
136var searchResults = await _docsIndexService.SearchAsync(query, topK, cancellationToken).ConfigureAwait(false);