mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 15:59:48 +00:00
Added documentation
This commit is contained in:
parent
55f55dab86
commit
6a2c3b637d
@ -6,14 +6,19 @@ public sealed class RetrievalImageContext : IRetrievalContext
|
|||||||
{
|
{
|
||||||
#region Implementation of IRetrievalContext
|
#region Implementation of IRetrievalContext
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
public required string DataSourceName { get; init; }
|
public required string DataSourceName { get; init; }
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
public required RetrievalContentCategory Category { get; init; }
|
public required RetrievalContentCategory Category { get; init; }
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
public required RetrievalContentType Type { get; init; }
|
public required RetrievalContentType Type { get; init; }
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
public required string Path { get; init; }
|
public required string Path { get; init; }
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
public IReadOnlyList<string> Links { get; init; } = [];
|
public IReadOnlyList<string> Links { get; init; } = [];
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
@ -7,14 +7,19 @@ public sealed class RetrievalTextContext : IRetrievalContext
|
|||||||
{
|
{
|
||||||
#region Implementation of IRetrievalContext
|
#region Implementation of IRetrievalContext
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
public required string DataSourceName { get; init; }
|
public required string DataSourceName { get; init; }
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
public required RetrievalContentCategory Category { get; init; }
|
public required RetrievalContentCategory Category { get; init; }
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
public required RetrievalContentType Type { get; init; }
|
public required RetrievalContentType Type { get; init; }
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
public required string Path { get; init; }
|
public required string Path { get; init; }
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
public IReadOnlyList<string> Links { get; init; } = [];
|
public IReadOnlyList<string> Links { get; init; } = [];
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
Loading…
Reference in New Issue
Block a user