namespace AIStudio.Tools.Rust; /// /// The response of the Qdrant information request. /// public record struct QdrantInfo { 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; } }