mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-06 01:49:06 +00:00
11 lines
279 B
C#
11 lines
279 B
C#
|
namespace AIStudio.Settings.DataModel;
|
||
|
|
||
|
public enum PreviewFeatures
|
||
|
{
|
||
|
//
|
||
|
// Important: Never delete any enum value from this list.
|
||
|
// We must be able to deserialize old settings files that may contain these values.
|
||
|
//
|
||
|
PRE_WRITER_MODE_2024,
|
||
|
PRE_RAG_2024,
|
||
|
}
|