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

Function rcli_get_active_engine

src/api/rcli_api.cpp:2911–2916  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2909}
2910
2911const char* rcli_get_active_engine(RCLIHandle handle) {
2912 if (!handle) return "llama.cpp";
2913 auto* engine = static_cast<RCLIEngine*>(handle);
2914 if (!engine->initialized) return "llama.cpp";
2915 return engine->pipeline.using_metalrt() ? "MetalRT" : "llama.cpp";
2916}
2917
2918const char* rcli_get_tts_model(RCLIHandle handle) {
2919 if (!handle) return "unknown";

Callers 4

build_models_panelMethod · 0.85
enter_models_modeMethod · 0.85
test_voice_benchFunction · 0.85
test_auto_compactFunction · 0.85

Calls 1

using_metalrtMethod · 0.80

Tested by 2

test_voice_benchFunction · 0.68
test_auto_compactFunction · 0.68