mirror of
https://github.com/theroyallab/tabbyAPI.git
synced 2026-04-20 14:28:54 +00:00
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:
@@ -14,14 +14,13 @@ class DependenciesModel(BaseModel):
|
|||||||
torch: bool
|
torch: bool
|
||||||
exllamav2: bool
|
exllamav2: bool
|
||||||
flash_attn: bool
|
flash_attn: bool
|
||||||
outlines: bool
|
|
||||||
infinity_emb: bool
|
infinity_emb: bool
|
||||||
sentence_transformers: bool
|
sentence_transformers: bool
|
||||||
|
|
||||||
@computed_field
|
@computed_field
|
||||||
@property
|
@property
|
||||||
def extras(self) -> bool:
|
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
|
@computed_field
|
||||||
@property
|
@property
|
||||||
|
|||||||
Reference in New Issue
Block a user