/** * Enum representing various tags that can be applied to a model. * These tags are used to categorize and filter models based on model's characteristics. * This helps clients to identify the origins and capabilities of a model. */ export declare enum ModelTag { Accuracy = "accuracy", Speed = "speed", Balanced = "balanced", Recommended = "recommended", Deprecated = "deprecated", Experimental = "experimental", Pro = "pro", Free = "free", Enterprise = "enterprise", Gateway = "gateway", BYOK = "byok", Local = "local", Ollama = "ollama", Dev = "dev" } //# sourceMappingURL=tags.d.ts.map