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