2 implementations of SearchAsync
aspire (1)
Mcp\Docs\DocsSearchService.cs (1)
132public async Task<DocsSearchResponse?> SearchAsync(string query, int topK = 5, CancellationToken cancellationToken = default)
Aspire.Cli.Tests (1)
Commands\DocsCommandTests.cs (1)
221public Task<DocsSearchResponse?> SearchAsync(string query, int topK = 5, CancellationToken cancellationToken = default)
2 references to SearchAsync
aspire (2)
Commands\DocsSearchCommand.cs (1)
74async () => await _docsSearchService.SearchAsync(query, limit, cancellationToken));
Mcp\Tools\SearchDocsTool.cs (1)
81var response = await _docsSearchService.SearchAsync(query, topK, cancellationToken);