17 lines
395 B
Java
17 lines
395 B
Java
package com.example.demo.config;
|
|
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
|
|
@ConfigurationProperties(prefix = "monitor.llm")
|
|
public record LlmProviderProperties(
|
|
String apiKey
|
|
) {
|
|
public LlmProviderProperties {
|
|
apiKey = apiKey == null ? "" : apiKey.trim();
|
|
}
|
|
|
|
public boolean configured() {
|
|
return !apiKey.isBlank();
|
|
}
|
|
}
|