2026-02-23 17:26:27 +00:00
|
|
|
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;
|
2026-02-25 17:01:16 +00:00
|
|
|
|
|
|
|
|
private String tenantId = "szmp@ash@2026";
|
2026-02-23 17:26:27 +00:00
|
|
|
}
|