in src/main/kotlin/co/huggingface/llmintellij/SecretsService.kt [12:20]
fun saveSecretSetting(secretValue: String) {
// Store the secret value securely
val credentialAttributes = CredentialAttributes(
"SecretsService"
)
val credentials = Credentials("", secretValue)
PasswordSafe.instance.set(credentialAttributes, credentials)
}