mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 16:01:37 +00:00
17 lines
383 B
C#
17 lines
383 B
C#
namespace AIStudio.Tools.Rust;
|
|
|
|
/// <summary>
|
|
/// The response of the Qdrant information request.
|
|
/// </summary>
|
|
public readonly 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; }
|
|
} |