From 6457252ca150cd96cdbdb8925659947d7e0617d4 Mon Sep 17 00:00:00 2001 From: turboderp <11859846+turboderp@users.noreply.github.com> Date: Wed, 15 Jul 2026 02:31:50 +0200 Subject: [PATCH] Model: Remove redundant enum value --- common/model.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/common/model.py b/common/model.py index 4f18a15..c0eac38 100644 --- a/common/model.py +++ b/common/model.py @@ -1,8 +1,4 @@ -""" -Manages the storage and utility of model containers. - -Containers exist as a common interface for backends. -""" +"""Manages the lifecycle of the global model container and embeddings container.""" import aiofiles import asyncio @@ -44,7 +40,6 @@ if dependencies.extras: class ModelType(Enum): MODEL = "model" DRAFT = "draft" - EMBEDDING = "embedding" VISION = "vision"