mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-14 22:43:38 +00:00
16 lines
508 B
C#
16 lines
508 B
C#
namespace AIStudio.Tools.ToolCallingSystem.ToolCallingImplementations.WebSearch;
|
|
|
|
/// <summary>
|
|
/// The search services the web search tool can ask.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Stored and configured by name, so a member must never be renamed: an organization
|
|
/// addresses these in its configuration, and a user has one of them saved as their chosen
|
|
/// backend. The numbers behind the names are not persisted anywhere.
|
|
/// </remarks>
|
|
public enum WebSearchBackend
|
|
{
|
|
SEARXNG,
|
|
STAAN,
|
|
TAVILY,
|
|
} |