fun getTokensToClear()

in src/main/kotlin/co/huggingface/llmintellij/LlmSettingsComponent.kt [242:249]


    fun getTokensToClear(): List<String>? {
        val tokensStr = tokensToClear.text
        return if (tokensStr == "") {
            null
        }else {
            tokensStr.split(",")
        }
    }