fun getStopTokens()

in src/main/kotlin/co/huggingface/llmintellij/LlmSettingsComponent.kt [283:290]


     fun getStopTokens(): List<String>? {
        val stopTokensStr = stopTokens.text
        return if (stopTokensStr == "") {
            null
        } else {
            stopTokensStr.split(",")
        }
    }