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

Function rcli_get_interrupted_response

src/api/rcli_api.cpp:2343–2350  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2341}
2342
2343const char* rcli_get_interrupted_response(RCLIHandle handle) {
2344 if (!handle) return "";
2345 auto* engine = static_cast<RCLIEngine*>(handle);
2346 // Store in a thread-local buffer so the pointer survives the call
2347 static thread_local std::string buf;
2348 buf = engine->pipeline.interrupted_response();
2349 return buf.c_str();
2350}
2351
2352// =============================================================================
2353// File Pipeline (iOS, testing)

Callers

nothing calls this directly

Calls 1

interrupted_responseMethod · 0.80

Tested by

no test coverage detected