Skip to content

Commit

Permalink
Dependencies: Remove outlines from optional check
Browse files Browse the repository at this point in the history
Outlines is no longer a dependency that's used in TabbyAPI.

Signed-off-by: kingbri <[email protected]>
  • Loading branch information
bdashore3 committed Dec 18, 2024
1 parent c23e406 commit b579fd4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions common/optional_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b579fd4

Please sign in to comment.