1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
| import jakarta.annotation.Resource; import lombok.extern.slf4j.Slf4j; import org.springframework.ai.chat.client.ChatClient; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import reactor.core.publisher.Flux;
@RestController @Slf4j @RequestMapping("/chatClient") public class ChatClientController {
@Resource private ChatClient deepSeekChatChatClient;
@Resource private ChatClient ollamaChatChatClient;
@RequestMapping(value = "/chat/ollama", produces = "text/stream;charset=utf8") public Flux<String> chatOllama() { Flux<String> flux = ollamaChatChatClient.prompt() .user("你是谁") .stream().content(); return flux; }
@RequestMapping(value = "/chat/deepseek", produces = "text/stream;charset=utf8") public Flux<String> chatDeepseek() { Flux<String> flux = deepSeekChatChatClient.prompt() .user("你是谁") .stream().content(); return flux; } }
|