分享
《舆情管理大师》 工作流思路
输入“/”快速插入内容
《舆情管理大师》 工作流思路
用户4389
用户4389
用户4392
用户4392
2024年9月27日修改
作者: 朱一鸣
💡
落地也不光是有场景,有思路,还需要解决另外一个难点---工程化
整体舆情构建流程
画板
共学展示版本
💡
我昨天晚上加班加点写了一个更加通用的版本出来。我希望这样的bot能对每一个都有帮助
我本身参赛的这个。一共有15个工作流,大多数人可能也用不上。
成品展示和体验
https://www.coze.cn/store/bot/7418868392762933302?panel=1&bid=6dt93t560701j
简单些小模块
多维表格模块
创建表头
代码块
Python
async def main(args: Args) -> Output:
ret: Output = {
"key1": [
{
"field_name": "keyword",
"type": 1
},
{
"field_name": "url",
"type": 1
},
{
"field_name": "create_time",
"type": 1
},
{
"field_name": "nickname",
"type": 1
},
{
"field_name": "title",
"type": 1
},
{
"field_name": "digg",
"type": 1
}
]
}
return ret