Fixed default value of retrieval process id

This commit is contained in:
Thorsten Sommer 2025-03-08 21:20:39 +01:00
parent cd2d8cf472
commit 5a726577ca
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -52,7 +52,7 @@ public readonly record struct DataSourceERI_V1 : IERIDataSource
public ERIVersion Version { get; init; } = ERIVersion.V1; public ERIVersion Version { get; init; } = ERIVersion.V1;
/// <inheritdoc /> /// <inheritdoc />
public string SelectedRetrievalId { get; init; } public string SelectedRetrievalId { get; init; } = string.Empty;
/// <inheritdoc /> /// <inheritdoc />
public async Task<IReadOnlyList<IRetrievalContext>> RetrieveDataAsync(IContent lastPrompt, ChatThread thread, CancellationToken token = default) public async Task<IReadOnlyList<IRetrievalContext>> RetrieveDataAsync(IContent lastPrompt, ChatThread thread, CancellationToken token = default)