企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
1、绑定设备 ``` 类型 type: bind 参数: user_id: 1//当前登录的用户ID ``` 2、添加好友 ``` 类型 type: add_frend 参数: user_id: 1//当前登录的用户ID, friend_id:2 //添加好友的ID is_secret:0//是否是密聊 1代表密聊添加好友 ``` 3、同意添加好友 ``` 类型 type :consent 参数: user_id:1 //当前登录的用户ID id: 1 好友申请列表的ID ``` 4、拒绝添加好友 ``` 类型 type :refuse 参数: user_id:1 //当前登录的用户ID id: 1 好友申请列表的ID ```