AI-Studio/app/MindWork AI Studio/Tools/Rust/QdrantInfo.cs

19 lines
547 B
C#
Raw Normal View History

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; }
2026-01-14 08:01:16 +00:00
public int PortHttp { get; init; }
2026-01-14 08:01:16 +00:00
public int PortGrpc { get; init; }
2026-01-14 08:01:16 +00:00
public string Fingerprint { get; init; }
2026-01-14 08:01:16 +00:00
public string ApiToken { get; init; }
}