diff options
author | cpumaxx <163466046+cpumaxx@users.noreply.github.com> | 2024-04-29 07:34:24 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-29 17:34:24 +0300 |
commit | ffe666572f98a686b17a2cd1dbf4c0a982e5ac0a (patch) | |
tree | 062ed2b2706163cdb2006b0204c4589e7da4f75a /common/common.h | |
parent | 24affa7db3c9db148854b0ab4fd63de8bca7d898 (diff) |
llava-cli : multiple images (#6969)
Co-authored-by: root <root@nenya.lothlorien.ca>
Diffstat (limited to 'common/common.h')
-rw-r--r-- | common/common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/common.h b/common/common.h index eea63a11..3233d90e 100644 --- a/common/common.h +++ b/common/common.h @@ -167,8 +167,8 @@ struct gpt_params { std::string cache_type_v = "f16"; // KV cache data type for the V // multimodal models (see examples/llava) - std::string mmproj = ""; // path to multimodal projector - std::string image = ""; // path to an image file + std::string mmproj = ""; // path to multimodal projector + std::vector<std::string> image; // path to image file(s) }; bool parse_kv_override(const char * data, std::vector<llama_model_kv_override> & overrides); |