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