mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-09-18 21:40:21 +00:00
7 lines
219 B
C#
7 lines
219 B
C#
|
namespace AIStudio.Provider.Perplexity;
|
||
|
|
||
|
/// <summary>
|
||
|
/// The delta text of a choice.
|
||
|
/// </summary>
|
||
|
/// <param name="Content">The content of the delta text.</param>
|
||
|
public readonly record struct Delta(string Content);
|