MCPcopy Create free account
hub / github.com/alibaba/MNN / ShowConfig

Method ShowConfig

apps/mnncli/src/model_runner.cpp:426–441  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

424}
425
426void ModelRunner::ShowConfig() {
427 std::cout << "Current configuration:\n";
428 std::cout << " - LLM model loaded successfully\n";
429 std::cout << " - Vision support: ";
430#ifdef LLM_SUPPORT_VISION
431#ifndef OPENCV_NOT_AVAILABLE
432 std::cout << "enabled (OpenCV available)\n";
433#else
434 std::cout << "enabled (OpenCV not available)\n";
435#endif
436#else
437 std::cout << "disabled\n";
438#endif
439 std::cout << " - Audio support: enabled\n";
440 std::cout << "\n";
441}

Callers 1

HandleMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected