mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-05-20 07:12:14 +00:00
23 lines
527 B
C#
23 lines
527 B
C#
namespace AIStudio.Tools.Rust;
|
|
|
|
/// <summary>
|
|
/// The response of the Qdrant information request.
|
|
/// </summary>
|
|
public readonly record struct QdrantInfo
|
|
{
|
|
public QdrantStatus Status { get; init; }
|
|
|
|
public bool IsAvailable { get; init; }
|
|
|
|
public string? UnavailableReason { get; init; }
|
|
|
|
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; }
|
|
} |