| 2897 | } |
| 2898 | |
| 2899 | int rcli_is_using_parakeet(RCLIHandle handle) { |
| 2900 | if (!handle) return 0; |
| 2901 | auto* engine = static_cast<RCLIEngine*>(handle); |
| 2902 | return engine->using_parakeet ? 1 : 0; |
| 2903 | } |
| 2904 | |
| 2905 | const char* rcli_get_llm_model(RCLIHandle handle) { |
| 2906 | if (!handle) return "unknown"; |
nothing calls this directly
no outgoing calls
no test coverage detected