src/main/java/com/yb/controller/agentController.java
@@ -78,6 +78,12 @@
            }
//          意图函数匹配
            HashMap<String, Object> mapObj = intentionService.getFunctionMatch(orderString, allParams);
//            hashMap.put("place",place)
            String args = JSONObject.parseObject(orderString).getString("args");
            if(args!= null){
                String place = JSONObject.parseObject(args).getString("place");
                mapObj.put("place",place);
            }
            hashMap.put("content", mapObj);
            return R.ok(hashMap);