AI-Studio/app/MindWork AI Studio/Provider/OpenAI/Annotation.cs

10 lines
349 B
C#
Raw Normal View History

2025-09-03 08:08:04 +00:00
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);