MCPcopy Create free account
hub / github.com/RunanywhereAI/RCLI / rcli_set_tool_trace_callback

Function rcli_set_tool_trace_callback

src/api/rcli_api.cpp:2846–2851  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2844}
2845
2846void rcli_set_tool_trace_callback(RCLIHandle handle, RCLIToolTraceCallback cb, void* user_data) {
2847 if (!handle) return;
2848 auto* engine = static_cast<RCLIEngine*>(handle);
2849 engine->tool_trace_cb = cb;
2850 engine->tool_trace_ud = user_data;
2851}
2852
2853void rcli_set_response_callback(RCLIHandle handle, RCLIResponseCallback cb, void* user_data) {
2854 if (!handle) return;

Callers 1

runMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected