14 lines
308 B
Java
14 lines
308 B
Java
|
|
package com.wecom.robot.service;
|
||
|
|
|
||
|
|
import com.wecom.robot.dto.ai.ChatRequest;
|
||
|
|
import com.wecom.robot.dto.ai.ChatResponse;
|
||
|
|
|
||
|
|
import java.util.concurrent.CompletableFuture;
|
||
|
|
|
||
|
|
public interface AiServiceClient {
|
||
|
|
|
||
|
|
CompletableFuture<ChatResponse> generateReply(ChatRequest request);
|
||
|
|
|
||
|
|
boolean healthCheck();
|
||
|
|
}
|