mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 18:33:36 +00:00
10 lines
336 B
Plaintext
10 lines
336 B
Plaintext
|
|
@using AIStudio.Settings.DataModel
|
||
|
|
@inherits SettingsPanelBase
|
||
|
|
|
||
|
|
@if (PreviewFeatures.PRE_RAG_2024.IsEnabled(this.SettingsManager))
|
||
|
|
{
|
||
|
|
<ExpansionPanel HeaderIcon="@AppIcons.DATABASE" HeaderText="@T("Configure Data Sources")">
|
||
|
|
<PreviewBeta ApplyInnerScrollingFix="true"/>
|
||
|
|
<DataSourceManagement/>
|
||
|
|
</ExpansionPanel>
|
||
|
|
}
|