namespace AIStudio.Agents;
///
/// Represents a selected data source, chosen by the agent.
///
/// The data source ID.
/// The reason for selecting the data source.
/// The confidence of the agent in the selection.
public readonly record struct SelectedDataSource(string Id, string Reason, float Confidence) : IConfidence;