mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-10-20 06:40:20 +00:00
Some checks failed
Build and Release / Read metadata (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage deb updater) (push) Has been cancelled
Build and Release / Prepare & create release (push) Has been cancelled
Build and Release / Publish release (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg updater) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis updater) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage deb updater) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg updater) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis updater) (push) Has been cancelled
33 lines
1.2 KiB
C#
33 lines
1.2 KiB
C#
using AIStudio.Chat;
|
|
using AIStudio.Provider;
|
|
|
|
namespace AIStudio.Tools.RAG;
|
|
|
|
public interface IDataSourceSelectionProcess
|
|
{
|
|
/// <summary>
|
|
/// How is the RAG process called?
|
|
/// </summary>
|
|
public string TechnicalName { get; }
|
|
|
|
/// <summary>
|
|
/// How is the RAG process called in the UI?
|
|
/// </summary>
|
|
public string UIName { get; }
|
|
|
|
/// <summary>
|
|
/// How works the RAG process?
|
|
/// </summary>
|
|
public string Description { get; }
|
|
|
|
/// <summary>
|
|
/// Starts the data source selection process.
|
|
/// </summary>
|
|
/// <param name="provider">The LLM provider. Used as default for data selection agents.</param>
|
|
/// <param name="lastUserPrompt">The last prompt that was issued by the user.</param>
|
|
/// <param name="chatThread">The chat thread.</param>
|
|
/// <param name="dataSources">The allowed data sources yielded by the data source service.</param>
|
|
/// <param name="token">The cancellation token.</param>
|
|
/// <returns></returns>
|
|
public Task<DataSelectionResult> SelectDataSourcesAsync(IProvider provider, IContent lastUserPrompt, ChatThread chatThread, AllowedSelectedDataSources dataSources, CancellationToken token = default);
|
|
} |