mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-11 18:49:07 +00:00
38 lines
963 B
C#
38 lines
963 B
C#
using AIStudio.Chat;
|
|
|
|
namespace AIStudio.Tools.RAG;
|
|
|
|
public sealed class RetrievalImageContext : IRetrievalContext
|
|
{
|
|
#region Implementation of IRetrievalContext
|
|
|
|
/// <inheritdoc />
|
|
public required string DataSourceName { get; init; }
|
|
|
|
/// <inheritdoc />
|
|
public required RetrievalContentCategory Category { get; init; }
|
|
|
|
/// <inheritdoc />
|
|
public required RetrievalContentType Type { get; init; }
|
|
|
|
/// <inheritdoc />
|
|
public required string Path { get; init; }
|
|
|
|
/// <inheritdoc />
|
|
public IReadOnlyList<string> Links { get; init; } = [];
|
|
|
|
#endregion
|
|
|
|
/// <summary>
|
|
/// The type of the image source.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Is the image source a URL, a local file path, a base64 string, etc.?
|
|
/// </remarks>
|
|
public required ContentImageSource SourceType { get; init; }
|
|
|
|
/// <summary>
|
|
/// The image source.
|
|
/// </summary>
|
|
public required string Source { get; set; }
|
|
} |