Skip to content

Commit

Permalink
Modified Pipes.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-XT committed Dec 19, 2024
1 parent 5a0d0b3 commit fc2bcb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Pipes.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def __init__(self):
and getenv("LLM_ENABLED").lower() == "true"
):
self.embedder = Embedding()
if self.current_vlm != "" and getenv("VISION_ENABLED").lower() == "true":
if getenv("STT_ENABLED").lower() == "true":
logging.info(f"[VLM] {self.current_vlm} model loading. Please wait...")
try:
self.vlm = VLM(model=self.current_vlm)
Expand Down

0 comments on commit fc2bcb6

Please sign in to comment.