You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
440 B
Java
17 lines
440 B
Java
package com.supervision.livedigitalavatarmanage.service;
|
|
|
|
import com.supervision.livedigitalavatarmanage.vo.ollama.OllamResponse;
|
|
import com.supervision.livedigitalavatarmanage.vo.ollama.OllamaDTO;
|
|
import reactor.core.publisher.Flux;
|
|
|
|
public interface OllamaAgentService {
|
|
|
|
/**
|
|
* 流式智能体问答
|
|
* @param agentChatReqDTO agentChatReqDTO
|
|
* @return
|
|
*/
|
|
Flux<OllamResponse> streamChat(OllamaDTO ollamaDTO);
|
|
|
|
}
|