You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
378 B

package cn.teammodel.service;
import cn.teammodel.model.dto.ai.deepseek.ChatResponseDto;
import cn.teammodel.model.dto.ai.deepseek.ChatReqDto;
import reactor.core.publisher.Flux;
/**
* 访DeepSeek
*/
public interface DeepSeekService {
/**
* AI
* @param message
* @return
*/
ChatResponseDto ChatAsk(ChatReqDto message);
}