mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-09-18 18:20:21 +00:00
12 lines
450 B
C#
12 lines
450 B
C#
|
namespace AIStudio.Provider.OpenAI;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Represents a tool used by the AI model.
|
||
|
/// </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>
|
||
|
/// <param name="Type">The type of the tool.</param>
|
||
|
public record Tool(string Type);
|