namespace AIStudio.Tools.Rust; /// /// The response of the Qdrant information request. /// /// The port number for HTTP communication with Qdrant. /// The port number for gRPC communication with Qdrant public record struct QdrantInfo { public string Path { get; init; } public int PortHttp { get; init; } public int PortGrpc { get; init; } }