mirror of
https://gitcode.com/ageerle/ruoyi-ai.git
synced 2026-04-11 18:47:20 +00:00
AI工作流优化
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package org.ruoyi.config;
|
||||
|
||||
import lombok.Data;
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Data
|
||||
@Component
|
||||
@ConfigurationProperties(prefix = "mcp.sse")
|
||||
public class McpSseConfig {
|
||||
|
||||
/**
|
||||
* mcp对外暴露的端点地址
|
||||
*/
|
||||
private String url;
|
||||
|
||||
/**
|
||||
* 是否开启
|
||||
*/
|
||||
private boolean enabled;
|
||||
}
|
||||
Reference in New Issue
Block a user