mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-09-18 22:00:22 +00:00
10 lines
349 B
C#
10 lines
349 B
C#
|
namespace AIStudio.Provider.OpenAI;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Base class for different types of annotations.
|
||
|
/// </summary>
|
||
|
/// <remarks>
|
||
|
/// We use this base class to represent various annotation types for all types of LLM providers.
|
||
|
/// </remarks>
|
||
|
/// <param name="Type">The type of the annotation.</param>
|
||
|
public abstract record Annotation(string Type);
|