2025-09-03 08:08:04 +00:00
|
|
|
namespace AIStudio.Provider.OpenAI;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2026-04-13 11:33:17 +00:00
|
|
|
/// Known provider-side tools for LLM providers.
|
2025-09-03 08:08:04 +00:00
|
|
|
/// </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>
|
2026-04-13 11:33:17 +00:00
|
|
|
public static class ProviderTools
|
2025-09-03 08:08:04 +00:00
|
|
|
{
|
2026-04-13 11:33:17 +00:00
|
|
|
public static readonly ProviderTool WEB_SEARCH = new("web_search");
|
|
|
|
|
}
|