fix: Change default verbose value of verbose in image chat format handlers to True to match Llama

This commit is contained in:
Andrei Betlen 2024-04-30 15:50:30 -04:00
parent 946156fb6c
commit 4f01c452b6

View file

@ -2205,7 +2205,7 @@ class Llava15ChatHandler:
"{% endif %}"
)
def __init__(self, clip_model_path: str, verbose: bool = False):
def __init__(self, clip_model_path: str, verbose: bool = True):
import llama_cpp.llava_cpp as llava_cpp
self.clip_model_path = clip_model_path