namespace AIStudio.Provider.Perplexity; /// /// Data model for a choice made by the AI. /// /// The index of the choice. /// The delta text of the choice. public readonly record struct Choice(int Index, Delta Delta);