集成MCP -> 小艾智能体项目

This commit is contained in:
userpu
2025-12-19 14:30:47 +08:00
parent c0d2bd73a3
commit 74d6f5356d
16 changed files with 359 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
package com.iwe3.langchain4j.service;
import reactor.core.publisher.Flux;
public interface McpService
{
Flux<String> chat(String question);
}