2026-02-03 13:32:17 +00:00
|
|
|
|
namespace AIStudio.Tools.Rust;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The response of the Qdrant information request.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public readonly record struct QdrantInfo
|
|
|
|
|
|
{
|
2026-05-19 06:24:22 +00:00
|
|
|
|
public QdrantStatus Status { get; init; }
|
|
|
|
|
|
|
2026-03-14 11:25:58 +00:00
|
|
|
|
public bool IsAvailable { get; init; }
|
|
|
|
|
|
|
|
|
|
|
|
public string? UnavailableReason { get; init; }
|
|
|
|
|
|
|
2026-02-03 13:32:17 +00:00
|
|
|
|
public string Path { get; init; }
|
|
|
|
|
|
|
|
|
|
|
|
public int PortHttp { get; init; }
|
|
|
|
|
|
|
|
|
|
|
|
public int PortGrpc { get; init; }
|
|
|
|
|
|
|
|
|
|
|
|
public string Fingerprint { get; init; }
|
|
|
|
|
|
|
|
|
|
|
|
public string ApiToken { get; init; }
|
|
|
|
|
|
}
|