fun getLspBinaryPath()

in src/main/kotlin/co/huggingface/llmintellij/LlmSettingsComponent.kt [356:363]


    fun getLspBinaryPath(): String? {
        val binaryPath = lspBinaryPath.text
        return if (binaryPath == "") {
            null
        } else {
            binaryPath
        }
    }