mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-09-18 15:00:20 +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);
|