AI-Studio/app/MindWork AI Studio/Settings/IInternalDataSource.cs

9 lines
255 B
C#
Raw Normal View History

2025-01-13 18:51:26 +00:00
namespace AIStudio.Settings;
public interface IInternalDataSource : IDataSource
{
/// <summary>
/// The unique identifier of the embedding method used by this internal data source.
/// </summary>
public string EmbeddingId { get; init; }
}