AI-Studio/app/MindWork AI Studio/Settings/IERIDataSource.cs

37 lines
971 B
C#
Raw Normal View History

using AIStudio.Assistants.ERI;
using AIStudio.Tools.ERIClient.DataModel;
2025-01-13 18:51:26 +00:00
namespace AIStudio.Settings;
public interface IERIDataSource : IExternalDataSource
{
/// <summary>
/// The hostname of the ERI server.
/// </summary>
2025-01-13 18:51:26 +00:00
public string Hostname { get; init; }
/// <summary>
/// The port of the ERI server.
/// </summary>
2025-01-13 18:51:26 +00:00
public int Port { get; init; }
/// <summary>
/// The authentication method to use.
/// </summary>
2025-01-13 18:51:26 +00:00
public AuthMethod AuthMethod { get; init; }
/// <summary>
/// The username to use for authentication, when the auth. method is USERNAME_PASSWORD.
/// </summary>
public string Username { get; init; }
/// <summary>
/// The ERI specification to use.
/// </summary>
public ERIVersion Version { get; init; }
/// <summary>
/// The ID of the selected retrieval process.
/// </summary>
public string SelectedRetrievalId { get; init; }
2025-01-13 18:51:26 +00:00
}