|
@@ -672,6 +672,7 @@ public class RyTask
|
|
|
log.error("[转JSON的时候]预测数据返回结果不符合解析条件,返回结果为{}", result);
|
|
|
continue;
|
|
|
}
|
|
|
+ log.info("^^^^^^^^^^^^^预测接口转弯JSON对象后,原内容是{}", JSON.toJSONString(jsonObject));
|
|
|
String task = jsonObject.getString("task");
|
|
|
String hour = jsonObject.getString("hour");
|
|
|
String pred = jsonObject.getString("pred");
|
|
@@ -1305,7 +1306,7 @@ public class RyTask
|
|
|
//2024年6月21日11:46:36 改成非流式输出
|
|
|
PredictionResponse predictions = stub.predictions(request);
|
|
|
String responseStr = predictions.getPrediction().toStringUtf8();
|
|
|
- log.info("大模型问答返回的原始结果为{}", responseStr);
|
|
|
+ log.info("调用TFT预测大模型返回的原始结果为{}", responseStr);
|
|
|
// return JSON.parseObject(responseStr).getString("pred");
|
|
|
return responseStr;
|
|
|
} catch (IOException e) {
|