README.md multimodal params fix (#967)

multi modal params fix: add logits = True -> to make llava work
This commit is contained in:
zocainViken 2023-12-12 02:41:38 +01:00 committed by GitHub
parent c1d92ce680
commit 6bbeea07ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -266,7 +266,8 @@ Then you'll need to use a custom chat handler to load the clip model and process
>>> llm = Llama(
model_path="./path/to/llava/llama-model.gguf",
chat_handler=chat_handler,
n_ctx=2048 # n_ctx should be increased to accomodate the image embedding
n_ctx=2048, # n_ctx should be increased to accomodate the image embedding
logits_all=True,# needed to make llava work
)
>>> llm.create_chat_completion(
messages = [