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