mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-09-18 16:40:24 +00:00
7 lines
247 B
C#
7 lines
247 B
C#
|
namespace AIStudio.Provider.OpenAI;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Represents an unknown annotation type.
|
||
|
/// </summary>
|
||
|
/// <param name="Type">The type of the unknown annotation.</param>
|
||
|
public sealed record AnnotatingUnknown(string Type) : Annotation(Type);
|