feat/multi-channel-framework #17

Merged
MerCry merged 4 commits from feat/multi-channel-framework into main 2026-03-13 09:56:02 +00:00
3 changed files with 6 additions and 4 deletions
Showing only changes of commit 905601ecdb - Show all commits

View File

@ -45,9 +45,11 @@ public class AiServiceClientImpl implements AiServiceClient {
ResponseEntity<ChatResponse> response = restTemplate.postForEntity(
url, entity, ChatResponse.class);
log.info("[AC-MCA-05] AI 服务响应: sessionId={}, shouldTransfer={}",
log.info("[AC-MCA-05] AI 服务响应: sessionId={}, shouldTransfer={},置信度:{}",
request.getSessionId(),
response.getBody() != null ? response.getBody().getShouldTransfer() : null);
response.getBody() != null ? response.getBody().getShouldTransfer() : null,
response.getBody().getConfidence()
);
return CompletableFuture.completedFuture(response.getBody());
}

View File

@ -1,5 +1,5 @@
server:
port: 8080
port: 8883
spring:
datasource:

View File

@ -1,5 +1,5 @@
server:
port: 8080
port: 8883
spring:
datasource: