mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-05-20 10:52:15 +00:00
8 lines
106 B
C#
8 lines
106 B
C#
|
|
namespace AIStudio.Tools.Rust;
|
||
|
|
|
||
|
|
public enum QdrantStatus
|
||
|
|
{
|
||
|
|
STARTING,
|
||
|
|
AVAILABLE,
|
||
|
|
UNAVAILABLE,
|
||
|
|
}
|