namespace AIStudio.Provider; /// /// Data model for a source used in the response. /// /// The title of the source. /// The URL of the source. public record Source(string Title, string URL) : ISource;