MCPcopy Create free account
hub / github.com/UbiquitousLearning/mllm / dump

Method dump

mllm/engine/ConfigFile.cpp:40–44  ·  view source on GitHub ↗

Dumps the JSON object to a formatted string.

Source from the content-addressed store, hash-verified

38
39// Dumps the JSON object to a formatted string.
40std::string ConfigFile::dump() const {
41 // The argument '4' pretty-prints the JSON with an indent of 4 spaces.
42 // Use dump() with no arguments for a compact output.
43 return json_.dump(4);
44}
45
46// Saves the current JSON object to a file.
47void ConfigFile::save(const std::string& file_path) {

Callers 1

getResponseFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected