mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-03-12 23:29:06 +00:00
19 lines
427 B
C#
19 lines
427 B
C#
namespace AIStudio.Settings.DataModel;
|
|
|
|
public enum DataSourceSecurity
|
|
{
|
|
/// <summary>
|
|
/// The security of the data source is not specified yet.
|
|
/// </summary>
|
|
NOT_SPECIFIED,
|
|
|
|
/// <summary>
|
|
/// This data can be used with any LLM provider.
|
|
/// </summary>
|
|
ALLOW_ANY,
|
|
|
|
/// <summary>
|
|
/// This data can only be used for self-hosted LLM providers.
|
|
/// </summary>
|
|
SELF_HOSTED,
|
|
} |