namespace AIStudio.Components;
public enum DataSourceSelectionMode
{
///
/// The user is selecting data sources for, e.g., the chat.
///
///
/// In this case, we have to filter the data sources based on the
/// selected provider and check security requirements.
///
SELECTION_MODE,
///
/// The user is configuring the default data sources, e.g., for the chat.
///
///
/// In this case, all data sources are available for selection.
/// They get filtered later based on the selected provider and
/// security requirements.
///
CONFIGURATION_MODE,
}