20 lines
462 B
Java
20 lines
462 B
Java
package com.wecom.robot.config;
|
|
|
|
import lombok.Data;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
@Data
|
|
@Component
|
|
@ConfigurationProperties(prefix = "ai-service")
|
|
public class AiServiceConfig {
|
|
|
|
private String url;
|
|
|
|
private int timeout = 5000;
|
|
|
|
private String tenantId = "default@ash@2026";
|
|
|
|
private String apiKey = "tDXu09--IZutcI2h06DCR5WkK9Oi9waTKyUxhaxl5oE";
|
|
}
|