mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-05-20 10:52:15 +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;
|
|
}
|