MCPcopy Create free account
hub / github.com/Luce-Org/lucebox-hub / render_tool_call_xml

Function render_tool_call_xml

server/src/server/http_server.cpp:715–726  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

713 {"top_p", smp.has_top_p ? smp.top_p : 1.0f},
714 {"top_k", smp.has_top_k ? smp.top_k : 0},
715 {"min_p", smp.has_min_p ? smp.min_p : 0.0f},
716 {"repeat_penalty", smp.has_repetition_penalty ? smp.repetition_penalty : 1.0f},
717 }},
718 {"model_alias", config.model_name},
719 {"model_path", config.model_path},
720 {"build_info", std::string(kServerName) + " v" DFLASH_SERVER_VERSION
721 " props_schema=" + std::to_string(kPropsSchema)},
722 {"speculative_mode", speculative_mode},
723 {"server", server},
724 {"model", {
725 {"arch", config.arch},
726 {"draft_path", config.draft_path.empty() ? json(nullptr) : json(config.draft_path)},
727 {"tokenizer_id", config.tokenizer_id.empty() ? json(nullptr) : json(config.tokenizer_id)},
728 }},
729 {"runtime", {

Callers 1

normalize_chat_messagesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected