mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-09-18 18:40:22 +00:00
14 lines
449 B
C#
14 lines
449 B
C#
|
namespace AIStudio.Provider.OpenAI;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Known 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 Tools
|
||
|
{
|
||
|
public static readonly Tool WEB_SEARCH = new("web_search");
|
||
|
}
|