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

Function rcli_set_transcript_callback

src/api/rcli_api.cpp:2825–2830  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2823// =============================================================================
2824
2825void rcli_set_transcript_callback(RCLIHandle handle, RCLITranscriptCallback cb, void* user_data) {
2826 if (!handle) return;
2827 auto* engine = static_cast<RCLIEngine*>(handle);
2828 engine->transcript_cb = cb;
2829 engine->transcript_ud = user_data;
2830}
2831
2832void rcli_set_state_callback(RCLIHandle handle, RCLIStateCallback cb, void* user_data) {
2833 if (!handle) return;

Callers 4

cmd_interactiveFunction · 0.85
cmd_mic_testFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected