diff options
author | Amir <amir_zia@outlook.com> | 2024-05-21 17:13:12 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-21 17:13:12 +0300 |
commit | 11474e756de3f56b760986e73086d40e787e52f8 (patch) | |
tree | ffb1c5369b3e7e8f128a114c7a7f1b5899376ac9 /common/common.h | |
parent | d8ee90222791afff2ab666ded4cb6195fd94cced (diff) |
examples: cache hf model when --model not provided (#7353)
* examples: cache hf model when --model not provided
* examples: cache hf model when --model not provided
* examples: cache hf model when --model not provided
* examples: cache hf model when --model not provided
* examples: cache hf model when --model not provided
Diffstat (limited to 'common/common.h')
-rw-r--r-- | common/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/common.h b/common/common.h index 566490e2..a8e5e50e 100644 --- a/common/common.h +++ b/common/common.h @@ -281,6 +281,7 @@ bool llama_should_add_bos_token(const llama_model * model); // bool create_directory_with_parents(const std::string & path); +std::string get_cache_directory(); void dump_vector_float_yaml(FILE * stream, const char * prop_name, const std::vector<float> & data); void dump_vector_int_yaml(FILE * stream, const char * prop_name, const std::vector<int> & data); void dump_string_yaml_multiline(FILE * stream, const char * prop_name, const char * data); |