Dependencies: Remove outlines from optional check

Outlines is no longer a dependency that's used in TabbyAPI.

Signed-off-by: kingbri <8082010+bdashore3@users.noreply.github.com>
This commit is contained in:
kingbri 2024-12-18 11:56:40 -05:00
parent c23e406f2d
commit b579fd46b7

View file

@ -14,14 +14,13 @@ class DependenciesModel(BaseModel):
torch: bool
exllamav2: bool
flash_attn: bool
outlines: bool
infinity_emb: bool
sentence_transformers: bool
@computed_field
@property
def extras(self) -> bool:
return self.outlines and self.infinity_emb and self.sentence_transformers
return self.infinity_emb and self.sentence_transformers
@computed_field
@property