mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-10-08 22:00:21 +00:00
8 lines
294 B
C#
8 lines
294 B
C#
namespace AIStudio.Provider.Perplexity;
|
|
|
|
/// <summary>
|
|
/// Data model for a choice made by the AI.
|
|
/// </summary>
|
|
/// <param name="Index">The index of the choice.</param>
|
|
/// <param name="Delta">The delta text of the choice.</param>
|
|
public readonly record struct Choice(int Index, Delta Delta); |