Skip to content

Commit 4f01c45

Browse files
committed
fix: Change default verbose value of verbose in image chat format handlers to True to match Llama
1 parent 946156f commit 4f01c45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llama_cpp/llama_chat_format.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2205,7 +2205,7 @@ class Llava15ChatHandler:
22052205
"{% endif %}"
22062206
)
22072207

2208-
def __init__(self, clip_model_path: str, verbose: bool = False):
2208+
def __init__(self, clip_model_path: str, verbose: bool = True):
22092209
import llama_cpp.llava_cpp as llava_cpp
22102210

22112211
self.clip_model_path = clip_model_path

0 commit comments

Comments
 (0)