2025-12-11 13:40:08 +00:00
|
|
|
|
namespace AIStudio.Tools.Rust;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The response of the Qdrant information request.
|
|
|
|
|
|
/// </summary>
|
2026-01-14 08:03:20 +00:00
|
|
|
|
public readonly record struct QdrantInfo
|
2025-12-11 13:40:08 +00:00
|
|
|
|
{
|
|
|
|
|
|
public string Path { get; init; }
|
2026-01-14 08:01:16 +00:00
|
|
|
|
|
2025-12-11 13:40:08 +00:00
|
|
|
|
public int PortHttp { get; init; }
|
2026-01-14 08:01:16 +00:00
|
|
|
|
|
2025-12-11 13:40:08 +00:00
|
|
|
|
public int PortGrpc { get; init; }
|
2026-01-14 08:01:16 +00:00
|
|
|
|
|
2026-01-13 15:38:22 +00:00
|
|
|
|
public string Fingerprint { get; init; }
|
2026-01-14 08:01:16 +00:00
|
|
|
|
|
2026-01-13 15:38:22 +00:00
|
|
|
|
public string ApiToken { get; init; }
|
2025-12-11 13:40:08 +00:00
|
|
|
|
}
|