9 lines
209 B
C#
9 lines
209 B
C#
|
|
namespace BotSharp.Abstraction.VectorStorage.Enums;
|
||
|
|
|
||
|
|
public static class VectorDataSource
|
||
|
|
{
|
||
|
|
public const string Api = "api";
|
||
|
|
public const string User = "user";
|
||
|
|
public const string File = "file";
|
||
|
|
}
|