mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 16:21:37 +00:00
13 lines
440 B
C#
13 lines
440 B
C#
|
|
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; }
|
|||
|
|
}
|