using AIStudio.Settings; namespace AIStudio.Tools.RAG; /// /// Result of any data selection process. /// /// Makes it sense to proceed with the RAG process? /// The selected data sources. public readonly record struct DataSelectionResult(bool ProceedWithRAG, IReadOnlyList SelectedDataSources);