1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package cn.iocoder.yudao.module.ai.framework.ai.config;
|
| import lombok.Data;
| import org.springframework.boot.context.properties.ConfigurationProperties;
|
| /**
| * 芋道 AI 配置类
| */
| @ConfigurationProperties(prefix = "yudao.ai")
| @Data
| public class YudaoAiProperties {
|
| private WebSearch webSearch;
|
| @Data
| public static class WebSearch {
| private boolean enable;
| private String apiKey;
| }
|
| }
|
|