|
@@ -12,11 +12,13 @@ import com.slibra.business.domain.*;
|
|
|
import com.slibra.business.mapper.*;
|
|
|
import com.slibra.business.req.ChatReq;
|
|
|
import com.slibra.business.req.ChatRequest;
|
|
|
+import com.slibra.business.req.GenerateArgs;
|
|
|
import com.slibra.business.req.PredictorRequest;
|
|
|
import com.slibra.business.res.ChartBasic;
|
|
|
import com.slibra.business.res.ShowValueChartBasic;
|
|
|
import com.slibra.business.service.ITXinyiForecastComparisonService;
|
|
|
import com.slibra.common.DecimalUtils;
|
|
|
+import com.slibra.common.config.BigModelConfig;
|
|
|
import com.slibra.common.constant.MyConstants;
|
|
|
import com.slibra.common.enums.BusinessEnum;
|
|
|
import com.slibra.common.enums.DataSourceType;
|
|
@@ -95,6 +97,9 @@ public class RyTask
|
|
|
@Autowired
|
|
|
private ITXinyiForecastComparisonService xinyiForecastComparisonService;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private BigModelConfig bigModelConfig;
|
|
|
+
|
|
|
|
|
|
// public final static StopWatch watch = new StopWatch("task");
|
|
|
public static final String[] queryTags = {"信义污水厂JS_COD_Value","信义污水厂JS_PH_Value","信义污水厂JS_SS_Value","信义污水厂JS_ZL_Value","信义污水厂JS_ZA_Value","信义污水厂JS_AD_Value","信义污水厂JS_T_Value","信义污水厂进水泵房液位","信义污水厂出水瞬时流量","信义污水厂升级出水COD","信义污水厂升级出水PH","信义污水厂升级出水SS","信义污水厂升级出水TN","信义污水厂升级出水TP","信义污水厂升级出水氨氮","信义污水厂AIT202_Value","信义污水厂AIT203_Value","信义污水厂AIT207_Value","信义污水厂AIT206_Value","信义污水厂AIT209_Value","信义污水厂AIT210_Value","信义污水厂进水TDS","信义污水厂FT101_Value","信义污水厂SWCHHYHLB1_R_Value","信义污水厂SWCHHYHLB2_R_Value","信义污水厂SWCHHYHLB3_R_Value","信义污水厂SWCHHYHLB4_R_Value","信义污水厂SWCHHYHLB5_R_Value","信义污水厂SWCHHYHLB6_R_Value","信义污水厂SWCWNHLB1_R_Value","信义污水厂SWCWNHLB2_R_Value","信义污水厂SWCWNHLB3_R_Value","信义污水厂SWCWNHLB4_R_Value","信义污水厂SWCWNHLB5_R_Value","信义污水厂GFJ1_R_Value","信义污水厂GFJ2_R_Value","信义污水厂GFJ3_R_Value","信义污水厂GFJ4_R_Value","信义污水厂GFJ5_R_Value","信义污水厂GFJ6_R_Value","信义污水厂GFJ1_KQLL_Value","信义污水厂GFJ2_KQLL_Value","信义污水厂GFJ3_KQLL_Value","信义污水厂GFJ4_KQLL_Value","信义污水厂GFJ5_KQLL_Value","信义污水厂GFJ6_KQLL_Value","信义污水厂实际碳源加药量","信义污水厂除磷加药瞬时流量", "信义污水厂_除磷P04预测值_"};
|
|
@@ -1236,7 +1241,7 @@ public class RyTask
|
|
|
// 获取输出流
|
|
|
ManagedChannel channel = null;
|
|
|
try {
|
|
|
- channel = ManagedChannelBuilder.forAddress("10.0.0.24", 17070)
|
|
|
+ channel = ManagedChannelBuilder.forAddress(bigModelConfig.getIp(), bigModelConfig.getPort())
|
|
|
.usePlaintext()
|
|
|
.build();
|
|
|
InferenceAPIsServiceGrpc.InferenceAPIsServiceBlockingStub stub = InferenceAPIsServiceGrpc.newBlockingStub(channel);
|
|
@@ -1283,10 +1288,14 @@ public class RyTask
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- private static String buildBigModelReqForChat(String sessionId, List<String> historyDates) {
|
|
|
+ private String buildBigModelReqForChat(String sessionId, List<String> historyDates) {
|
|
|
ChatRequest chatRequest = new ChatRequest();
|
|
|
chatRequest.setSessionId(sessionId);
|
|
|
chatRequest.setHistoryDia(historyDates);
|
|
|
+ //2024年7月5日13:24:10 temperature做区分
|
|
|
+ GenerateArgs generateArgs = new GenerateArgs();
|
|
|
+ generateArgs.setTemperature(bigModelConfig.getTemperature());
|
|
|
+ chatRequest.setGenerateArgs(generateArgs);
|
|
|
Map<String, Object> extra = new HashMap<>();
|
|
|
// extra.put("ip_address", IpUtils.getIpAddr());
|
|
|
extra.put("ip_address", null);
|
|
@@ -1296,11 +1305,11 @@ public class RyTask
|
|
|
}
|
|
|
|
|
|
|
|
|
- public static String getPredictor(String type){
|
|
|
+ public String getPredictor(String type){
|
|
|
// 获取输出流
|
|
|
ManagedChannel channel = null;
|
|
|
try {
|
|
|
- channel = ManagedChannelBuilder.forAddress("10.0.0.24", 17070)
|
|
|
+ channel = ManagedChannelBuilder.forAddress(bigModelConfig.getIp(), bigModelConfig.getPort())
|
|
|
.usePlaintext()
|
|
|
.build();
|
|
|
InferenceAPIsServiceGrpc.InferenceAPIsServiceBlockingStub stub = InferenceAPIsServiceGrpc.newBlockingStub(channel);
|
|
@@ -1367,7 +1376,7 @@ public class RyTask
|
|
|
// 获取输出流
|
|
|
ManagedChannel channel = null;
|
|
|
try {
|
|
|
- channel = ManagedChannelBuilder.forAddress("10.0.0.24", 17070)
|
|
|
+ channel = ManagedChannelBuilder.forAddress(bigModelConfig.getIp(), bigModelConfig.getPort())
|
|
|
.usePlaintext()
|
|
|
.build();
|
|
|
InferenceAPIsServiceGrpc.InferenceAPIsServiceBlockingStub stub = InferenceAPIsServiceGrpc.newBlockingStub(channel);
|
|
@@ -1416,7 +1425,6 @@ public class RyTask
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * @see buildShortReportQueryDataNew
|
|
|
* @param dailyTwoRecords
|
|
|
* @return
|
|
|
*/
|