mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-05-20 20:12:14 +00:00
15 lines
480 B
C#
15 lines
480 B
C#
namespace AIStudio.Provider.OpenAI;
|
|
|
|
/// <summary>
|
|
/// Known provider-side tools for LLM providers.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Right now, only our OpenAI provider is using tools. Thus, this class is located in the
|
|
/// OpenAI namespace. In the future, when other providers also support tools, this class can
|
|
/// be moved into the provider namespace.
|
|
/// </remarks>
|
|
public static class ProviderTools
|
|
{
|
|
public static readonly ProviderTool WEB_SEARCH = new("web_search");
|
|
}
|