| | |
| | | |
| | | import cc.mrbird.febs.ai.strategy.param.LlmStrategyDto; |
| | | import cc.mrbird.febs.common.entity.FebsResponse; |
| | | import cc.mrbird.febs.yinhe.req.AiRequestDto; |
| | | import reactor.core.publisher.Flux; |
| | | |
| | | import java.util.List; |
| | |
| | | |
| | | FebsResponse llmInvokeNonStreaming(List<LlmStrategyDto> dto); |
| | | |
| | | Flux<FebsResponse> llmInvokeStreaming(List<LlmStrategyDto> dto); |
| | | Flux<FebsResponse> llmInvokeStreamingWithThink(List<LlmStrategyDto> dto); |
| | | |
| | | Flux<FebsResponse> llmInvokeStreamingNoThink(List<LlmStrategyDto> dto); |
| | | |
| | | Flux<FebsResponse> llmInvokeStreamingNoThink(AiRequestDto aiRequestDto); |
| | | } |