in src/main/kotlin/co/huggingface/llmintellij/LlmSettingsComponent.kt [251:257]
fun setTokensToClear(tokens: List<String>?) {
if (tokens == null) {
tokensToClear.text = null
} else {
tokensToClear.text = tokens.joinToString(",")
}
}