mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 17:49:05 +00:00
9 lines
255 B
C#
9 lines
255 B
C#
|
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; }
|
||
|
}
|