increase max supported llava images to 8

This commit is contained in:
Concedo 2025-01-09 22:12:06 +08:00
parent d3d7dae82b
commit 0cb599546e
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
#include <cstdint> #include <cstdint>
const int tensor_split_max = 16; const int tensor_split_max = 16;
const int images_max = 4; const int images_max = 8;
const int logprobs_max = 5; const int logprobs_max = 5;
// match kobold's sampler list and order // match kobold's sampler list and order

View file

@ -31,7 +31,7 @@ from datetime import datetime, timezone
# constants # constants
sampler_order_max = 7 sampler_order_max = 7
tensor_split_max = 16 tensor_split_max = 16
images_max = 4 images_max = 8
bias_min_value = -100.0 bias_min_value = -100.0
bias_max_value = 100.0 bias_max_value = 100.0
logprobs_max = 5 logprobs_max = 5