mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-10-08 22:00: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); |