namespace AIStudio.Provider.OpenAI; /// /// Represents citation data for a URL in a chat completion response. /// /// The end index of the citation in the response text. /// The start index of the citation in the response text. /// The title of the cited source. /// The URL of the cited source. public sealed record ChatCompletionUrlCitationData( int EndIndex, int StartIndex, string Title, string URL);