fix: Change default verbose value of verbose in image chat format handlers to True to match Llama
This commit is contained in:
parent
946156fb6c
commit
4f01c452b6
1 changed files with 1 additions and 1 deletions
|
@ -2205,7 +2205,7 @@ class Llava15ChatHandler:
|
||||||
"{% endif %}"
|
"{% 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
|
import llama_cpp.llava_cpp as llava_cpp
|
||||||
|
|
||||||
self.clip_model_path = clip_model_path
|
self.clip_model_path = clip_model_path
|
||||||
|
|
Loading…
Reference in a new issue