mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 16:33:37 +00:00
10 lines
272 B
C#
10 lines
272 B
C#
namespace AIStudio.Settings.DataModel;
|
|
|
|
public sealed class DataDataSourceIndexing
|
|
{
|
|
/// <summary>
|
|
/// Whether local data source embeddings should refresh automatically when files change.
|
|
/// </summary>
|
|
public bool AutomaticRefresh { get; set; } = true;
|
|
}
|