using AIStudio.Provider.OpenAI;
namespace AIStudio.Provider.Perplexity;
///
/// Data model for a line in the response stream, for streaming completions.
///
/// The id of the response.
/// The object describing the response.
/// The timestamp of the response.
/// The model used for the response.
/// The system fingerprint; together with the seed, this allows you to reproduce the response.
/// The choices made by the AI.
public readonly record struct ResponseStreamLine(string Id, string Object, uint Created, string Model, string SystemFingerprint, IList Choices, IList SearchResults) : IResponseStreamLine
{
///
public bool ContainsContent() => this != default && this.Choices.Count > 0;
///
public ContentStreamChunk GetContent() => new(this.Choices[0].Delta.Content, this.GetSources());
///
/// What Perplexity says the request cost, on the one line which carries it.
///
///
/// The same block the OpenAI chat completion API sends, because this is that wire format.
/// Not a positional parameter: the struct is built from JSON, and a further parameter would
/// only be a value nobody passes.
///
public ChatCompletionUsage? Usage { get; init; }
///
public TokenUsage GetUsage() => this.Usage?.ToTokenUsage() ?? TokenUsage.UNKNOWN;
///
public bool ContainsSources() => this != default && this.SearchResults.Count > 0;
///
public IList GetSources() => this.SearchResults.Cast().ToList();
}