mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-09-18 20:00:21 +00:00
7 lines
295 B
C#
7 lines
295 B
C#
|
namespace AIStudio.Provider.OpenAI;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Data structure representing annotation deltas in chat completions.
|
||
|
/// </summary>
|
||
|
/// <param name="Annotations">The list of annotations, which can be null.</param>
|
||
|
public record ChatCompletionAnnotationDelta(IList<Annotation>? Annotations);
|