Browse Source

add:大模型管理

zhongwei
haungxing 7 months ago
parent
commit
0674c061b1
  1. 4
      hzims-service/hzims-big-model/src/main/java/com/hnac/hzims/bigmodel/interactive/service/impl/JumpRouteJoinStrategy.java

4
hzims-service/hzims-big-model/src/main/java/com/hnac/hzims/bigmodel/interactive/service/impl/JumpRouteJoinStrategy.java

@ -95,14 +95,14 @@ public class JumpRouteJoinStrategy {
* @return 实时画面路径拼接所需参数 * @return 实时画面路径拼接所需参数
*/ */
private Map<String,String> scadaResolve(Map<String,String> args) { private Map<String,String> scadaResolve(Map<String,String> args) {
String params = args.get("params"); String params = args.get("canvas_id");
// 参数格式为:picResource^context^stationNum^projectId^taskId^name^id // 参数格式为:picResource^context^stationNum^projectId^taskId^name^id
String[] keys = new String[]{"picResource","context","stationNum","projectId","taskId","name","id"}; String[] keys = new String[]{"picResource","context","stationNum","projectId","taskId","name","id"};
return this.resolve(params,keys); return this.resolve(params,keys);
} }
private Map<String,String> videoResolve(Map<String,String> args) { private Map<String,String> videoResolve(Map<String,String> args) {
String params = args.get("params"); String params = args.get("canvas_id");
// 参数格式为:id^name^stationCode^pointCode^host^appKey^appSecret // 参数格式为:id^name^stationCode^pointCode^host^appKey^appSecret
String[] keys = new String[]{"id","name","stationCode","pointCode","host","appKey","appSecret"}; String[] keys = new String[]{"id","name","stationCode","pointCode","host","appKey","appSecret"};
return this.resolve(params,keys); return this.resolve(params,keys);

Loading…
Cancel
Save