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( ResponseEntity<ChatResponse> response = restTemplate.postForEntity(
url, entity, ChatResponse.class); url, entity, ChatResponse.class);
log.info("[AC-MCA-05] AI 服务响应: sessionId={}, shouldTransfer={}", log.info("[AC-MCA-05] AI 服务响应: sessionId={}, shouldTransfer={},置信度:{}",
request.getSessionId(), request.getSessionId(),
response.getBody() != null ? response.getBody().getShouldTransfer() : null); response.getBody() != null ? response.getBody().getShouldTransfer() : null,
response.getBody().getConfidence()
);
return CompletableFuture.completedFuture(response.getBody()); return CompletableFuture.completedFuture(response.getBody());
} }

View File

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

View File

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