2025-12-11 13:40:08 +00:00
|
|
|
|
namespace AIStudio.Tools.Rust;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The response of the Qdrant information request.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="portHTTP">The port number for HTTP communication with Qdrant.</param>
|
|
|
|
|
|
/// <param name="portGRPC">The port number for gRPC communication with Qdrant</param>
|
|
|
|
|
|
public record struct QdrantInfo
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Path { get; init; }
|
|
|
|
|
|
public int PortHttp { get; init; }
|
|
|
|
|
|
public int PortGrpc { get; init; }
|
2026-01-13 15:38:22 +00:00
|
|
|
|
public string Fingerprint { get; init; }
|
|
|
|
|
|
public string ApiToken { get; init; }
|
2025-12-11 13:40:08 +00:00
|
|
|
|
}
|