2 implementations of SearchAsync
aspire (1)
Documentation\ApiDocs\ApiDocsIndexService.cs (1)
462
public async ValueTask<IReadOnlyList<ApiSearchResult>>
SearchAsync
(string query, string? language = null, int topK = 10, CancellationToken cancellationToken = default)
Aspire.Cli.Tests (1)
Commands\ApiCommandTests.cs (1)
123
public ValueTask<IReadOnlyList<ApiSearchResult>>
SearchAsync
(string query, string? language = null, int topK = 10, CancellationToken cancellationToken = default)
1 reference to SearchAsync
aspire (1)
Commands\ApiSearchCommand.cs (1)
71
async () => await _apiDocsIndexService.
SearchAsync
(query, language, limit, cancellationToken));