// Copyright (c) Microsoft. All rights reserved.
#pragma warning disable CS0618 // ITextSearch is obsolete - Sample demonstrates legacy interface usage
using Microsoft.SemanticKernel.Data;
using Microsoft.SemanticKernel.Plugins.Web.Bing;
using Microsoft.SemanticKernel.Plugins.Web.Google;
namespace GettingStartedWithTextSearch;
///
/// This example shows how to create and use a .
///
public class Step1_Web_Search(ITestOutputHelper output) : BaseTest(output)
{
///
/// Show how to create a and use it to perform a search.
///
[Fact]
public async Task BingSearchAsync()
{
// Create an ITextSearch instance using Bing search
var textSearch = new BingTextSearch(apiKey: TestConfiguration.Bing.ApiKey);
var query = "What is the Semantic Kernel?";
// Search and return results
KernelSearchResults searchResults = await textSearch.SearchAsync(query, new TextSearchOptions { Top = 4 });
await foreach (string result in searchResults.Results)
{
Console.WriteLine(result);
}
}
///
/// Show how to create a and use it to perform a search.
///
[Fact]
public async Task GoogleSearchAsync()
{
// Create an ITextSearch instance using Google search
var textSearch = new GoogleTextSearch(
searchEngineId: TestConfiguration.Google.SearchEngineId,
apiKey: TestConfiguration.Google.ApiKey);
var query = "What is the Semantic Kernel?";
// Search and return results
KernelSearchResults searchResults = await textSearch.SearchAsync(query, new TextSearchOptions { Top = 4 });
await foreach (string result in searchResults.Results)
{
Console.WriteLine(result);
}
}
///
/// Show how to use with the new generic
/// interface and LINQ filtering for type-safe searches.
///
[Fact]
public async Task BingSearchWithLinqFilteringAsync()
{
#pragma warning disable CA1859 // Use concrete types when possible for improved performance - Sample intentionally demonstrates interface usage
// Create an ITextSearch instance for type-safe LINQ filtering
ITextSearch textSearch = new BingTextSearch(apiKey: TestConfiguration.Bing.ApiKey);
#pragma warning restore CA1859
var query = "What is the Semantic Kernel?";
// Use LINQ filtering for type-safe search with compile-time validation
var options = new TextSearchOptions
{
Top = 4,
Filter = page => page.Language == "en" && page.IsFamilyFriendly == true
};
// Search and return strongly-typed results
Console.WriteLine("\n--- Bing Search with LINQ Filtering ---\n");
KernelSearchResults searchResults = await textSearch.GetSearchResultsAsync(query, options);
await foreach (BingWebPage page in searchResults.Results)
{
Console.WriteLine($"Name: {page.Name}");
Console.WriteLine($"Snippet: {page.Snippet}");
Console.WriteLine($"Url: {page.Url}");
Console.WriteLine($"Language: {page.Language}");
Console.WriteLine($"Family Friendly: {page.IsFamilyFriendly}");
Console.WriteLine("---");
}
}
///
/// Show how to use with the new generic
/// interface and LINQ filtering for type-safe searches.
///
[Fact]
public async Task GoogleSearchWithLinqFilteringAsync()
{
#pragma warning disable CA1859 // Use concrete types when possible for improved performance - Sample intentionally demonstrates interface usage
// Create an ITextSearch instance for type-safe LINQ filtering
ITextSearch textSearch = new GoogleTextSearch(
searchEngineId: TestConfiguration.Google.SearchEngineId,
apiKey: TestConfiguration.Google.ApiKey);
#pragma warning restore CA1859
var query = "What is the Semantic Kernel?";
// Use LINQ filtering for type-safe search with compile-time validation
var options = new TextSearchOptions
{
Top = 4,
Filter = page => page.Title != null && page.Title.Contains("Semantic") && page.DisplayLink != null && page.DisplayLink.EndsWith(".com")
};
// Search and return strongly-typed results
Console.WriteLine("\n--- Google Search with LINQ Filtering ---\n");
KernelSearchResults searchResults = await textSearch.GetSearchResultsAsync(query, options);
await foreach (GoogleWebPage page in searchResults.Results)
{
Console.WriteLine($"Title: {page.Title}");
Console.WriteLine($"Snippet: {page.Snippet}");
Console.WriteLine($"Link: {page.Link}");
Console.WriteLine($"Display Link: {page.DisplayLink}");
Console.WriteLine("---");
}
}
///
/// Show how to create a and use it to perform a search
/// and return results as a collection of instances.
///
[Fact]
public async Task SearchForWebPagesAsync()
{
// Create an ITextSearch instance
ITextSearch textSearch = this.UseBingSearch ?
new BingTextSearch(
apiKey: TestConfiguration.Bing.ApiKey) :
new GoogleTextSearch(
searchEngineId: TestConfiguration.Google.SearchEngineId,
apiKey: TestConfiguration.Google.ApiKey);
var query = "What is the Semantic Kernel?";
// Search and return results using the implementation specific data model
KernelSearchResults