mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 08:39:47 +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
|
||||
|
||||
/// <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
|
||||
|
@ -7,14 +7,19 @@ public sealed class RetrievalTextContext : 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
|
||||
|
Loading…
Reference in New Issue
Block a user