MCPcopy Create free account
hub / github.com/appdevforall/CodeOnTheGo / gguf_set_val_bool

Function gguf_set_val_bool

subprojects/llama.cpp/ggml/src/gguf.cpp:1037–1041  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1035}
1036
1037void gguf_set_val_bool(struct gguf_context * ctx, const char * key, bool val) {
1038 gguf_check_reserved_keys(key, val);
1039 gguf_remove_key(ctx, key);
1040 ctx->kv.emplace_back(key, val);
1041}
1042
1043void gguf_set_val_str(struct gguf_context * ctx, const char * key, const char * val) {
1044 gguf_check_reserved_keys(key, val);

Callers 4

add_kvMethod · 0.85
get_random_gguf_contextFunction · 0.85
gguf_set_kvFunction · 0.85

Calls 2

gguf_check_reserved_keysFunction · 0.85
gguf_remove_keyFunction · 0.85

Tested by 1

get_random_gguf_contextFunction · 0.68