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

Function rcli_vlm_init

src/api/rcli_api.cpp:3045–3050  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3043}
3044
3045int rcli_vlm_init(RCLIHandle handle) {
3046 if (!handle) return -1;
3047 auto* engine = static_cast<RCLIEngine*>(handle);
3048 std::lock_guard<std::mutex> lock(engine->mutex);
3049 return vlm_init_locked(engine);
3050}
3051
3052const char* rcli_vlm_analyze(RCLIHandle handle, const char* image_path, const char* prompt) {
3053 if (!handle || !image_path) return "";

Callers 4

cmd_vlmFunction · 0.85
cmd_cameraFunction · 0.85
cmd_screenFunction · 0.85
runMethod · 0.85

Calls 1

vlm_init_lockedFunction · 0.85

Tested by

no test coverage detected