|
|
@ -96,6 +96,7 @@ public class InteractiveServiceImpl implements IInteractiveService { |
|
|
|
params.put("projectids",this.getStationPermissionsById(userId).stream().map(DeptStationDTO::getDeptId).filter(Func::isNotEmpty).toArray()); |
|
|
|
params.put("projectids",this.getStationPermissionsById(userId).stream().map(DeptStationDTO::getDeptId).filter(Func::isNotEmpty).toArray()); |
|
|
|
HttpResponse response = HttpRequest.post(fdpHost + bigModelInvokeUrl.getAssistantAsk()) |
|
|
|
HttpResponse response = HttpRequest.post(fdpHost + bigModelInvokeUrl.getAssistantAsk()) |
|
|
|
.body(JSON.toJSONString(params)).execute(); |
|
|
|
.body(JSON.toJSONString(params)).execute(); |
|
|
|
|
|
|
|
logger.info("interactive:ask","问答传参为:" + JSON.toJSONString(params) + "结果为:" + response.body()); |
|
|
|
if(response.getStatus() != HttpServletResponse.SC_OK) { |
|
|
|
if(response.getStatus() != HttpServletResponse.SC_OK) { |
|
|
|
log.error("远程调用大模型【发起问答】接口失败!"); |
|
|
|
log.error("远程调用大模型【发起问答】接口失败!"); |
|
|
|
return R.fail("远程调用大模型【发起问答】接口失败!"); |
|
|
|
return R.fail("远程调用大模型【发起问答】接口失败!"); |
|
|
|