├── .gitignore ├── LICENSE ├── README.md ├── achieves ├── Feishu天气查询机器人 │ ├── README.md │ ├── bot.conversations.zip │ ├── conversations │ │ ├── index.json │ │ ├── plugin.js │ │ └── zh_CN.weather.ms │ └── images │ │ ├── screenshot_20240620091344.png │ │ ├── screenshot_20240620091358.png │ │ ├── screenshot_20240620091558.png │ │ ├── screenshot_20240620091615.png │ │ ├── screenshot_20240620091629.png │ │ ├── screenshot_20240620091642.png │ │ ├── screenshot_20240620091705.png │ │ ├── screenshot_20240620091716.png │ │ ├── screenshot_20240620091731.png │ │ ├── screenshot_20240620091750.png │ │ ├── screenshot_20240620091811.png │ │ └── screenshot_20240620091830.png ├── GitHub工单机器人 │ ├── README.md │ ├── bot.conversations.c66 │ ├── bot.dicts.json │ ├── bot.faqs.json │ ├── bot.intents.json │ └── conversations │ │ ├── index.json │ │ ├── plugin.js │ │ ├── zh_CN.__post__.ms │ │ ├── zh_CN.greetings.ms │ │ └── zh_CN.issues.ms ├── README.md ├── 保健品 │ ├── .gitkeep │ ├── README.MD │ ├── bot.conversations.c66 │ ├── bot.faqs.json │ └── flow.xlsx ├── 信用卡 │ ├── .gitkeep │ ├── README.MD │ ├── bot.conversations.c66 │ ├── bot.faqs.json │ └── flow.xlsx ├── 回访 │ ├── .gitkeep │ ├── README.md │ ├── bot.conversations.c66 │ ├── bot.faqs.json │ └── flow.xlsx ├── 天气查询 │ ├── .gitignore │ ├── README.md │ ├── bot.conversations.c66 │ └── bot.faqs.json ├── 房产 │ ├── .gitkeep │ ├── README.MD │ ├── bot.faqs.json │ └── flow.xlsx ├── 教育培训 │ ├── .gitkeep │ ├── README.MD │ ├── bot.conversations.c66 │ ├── bot.faqs.json │ └── flow.xlsx ├── 法律服务 │ ├── .gitkeep │ ├── README.MD │ ├── bot.conversations.c66 │ ├── bot.faqs.json │ └── flow.xlsx ├── 活动通知 │ ├── .gitignore │ ├── README.md │ ├── bot.conversations.c66 │ ├── bot.faqs.json │ ├── flow.mdj │ └── flow.xlsx ├── 理财 │ ├── .gitkeep │ ├── README.MD │ ├── bot.conversations.c66 │ ├── bot.faqs.json │ └── flow.xlsx ├── 财税 │ ├── .gitkeep │ ├── README.md │ ├── bot.conversations.c66 │ ├── bot.faqs.json │ └── flow.xlsx ├── 酒水 │ ├── .gitkeep │ ├── README.MD │ ├── bot.conversations.c66 │ ├── bot.faqs.json │ └── flow.xlsx └── 闲聊 │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── assets │ └── 1.png │ ├── bot.conversations.c66 │ └── bot.faqs.json ├── assets ├── 1.jpg ├── 10.jpg ├── 11.jpg ├── 12.jpg ├── 2.png ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.png ├── 7.jpg ├── 8.png ├── 9.jpg ├── WechatIMG4918.jpeg ├── demo-contact.json ├── image-2021-05-14-095741.png ├── images │ ├── screenshot_20240620093658.png │ ├── screenshot_20240627135527.png │ └── screenshot_20240627135732.png ├── sample.sh └── tpls │ ├── .gitignore │ ├── LICENSE │ ├── README.ap │ ├── botarchive │ ├── index.json │ ├── plugin.js │ └── zh_CN.greetings.ms │ ├── package.json │ ├── sample.env │ └── scripts │ ├── archive.sh │ ├── bot │ ├── chat.sh │ ├── deploy.sh │ ├── install.sh │ └── trace.sh ├── bin ├── commit.sh ├── export.sh ├── import.sh └── package.sh ├── docs ├── development_cde.md ├── development_nodejs.md └── import_bot_to_cloud.md └── projects ├── GuessNumberBot ├── .gitignore ├── README.md ├── assets │ ├── screenshot_20240627153349.png │ └── screenshot_20240627154900.png ├── bot.conversations.c66 ├── bot.dicts.json ├── bot.faqs.json ├── bot.intents.json └── conversations │ ├── en_US.greetings.ms │ ├── en_US.guess_the_number.ms │ ├── index.json │ └── plugin.js ├── README.md ├── 冰箱报修服务机器人 ├── .env ├── README.md ├── assets │ ├── screenshot_20240627161133.png │ └── screenshot_20240628102540.png ├── bot.conversations.c66 ├── bot.dicts.json ├── bot.faqs.json ├── bot.intents.json └── conversations │ ├── index.json │ ├── plugin.js │ └── zh_CN.greetings.ms ├── 招聘面试机器人 ├── .env ├── README.md ├── assets │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ └── screenshot_20240627151920.png ├── bot.conversations.c66 ├── bot.faqs.json └── conversations │ ├── index.json │ ├── plugin.js │ ├── zh_CN.background.ms │ ├── zh_CN.basic.ms │ ├── zh_CN.close.ms │ ├── zh_CN.greetings.ms │ ├── zh_CN.mental.ms │ ├── zh_CN.nlp.ms │ └── zh_CN.nodejs.ms ├── 讲笑话机器人 ├── .gitignore ├── LICENSE ├── README.md ├── assets │ ├── 1.png │ ├── jokes.json │ └── screenshot_20240627141615.png ├── bot.conversations.c66 ├── bot.dicts.json ├── bot.faqs.json ├── bot.intents.json └── conversations │ ├── index.json │ ├── plugin.js │ ├── zh_CN.give_me_joke.ms │ └── zh_CN.greetings.ms └── 预定机票机器人 ├── .gitignore ├── README.md ├── assets └── screenshot_20240627140852.png ├── bot.conversations.c66 ├── bot.dicts.json ├── bot.faqs.json ├── bot.intents.json ├── conversations ├── index.json ├── plugin.js ├── zh_CN.__pre__.ms ├── zh_CN.greetings.ms └── zh_CN.intents.ms └── sample.env /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/README.md -------------------------------------------------------------------------------- /achieves/Feishu天气查询机器人/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/Feishu天气查询机器人/README.md -------------------------------------------------------------------------------- /achieves/Feishu天气查询机器人/bot.conversations.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/Feishu天气查询机器人/bot.conversations.zip -------------------------------------------------------------------------------- /achieves/Feishu天气查询机器人/conversations/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/Feishu天气查询机器人/conversations/index.json -------------------------------------------------------------------------------- /achieves/Feishu天气查询机器人/conversations/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/Feishu天气查询机器人/conversations/plugin.js -------------------------------------------------------------------------------- /achieves/Feishu天气查询机器人/conversations/zh_CN.weather.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/Feishu天气查询机器人/conversations/zh_CN.weather.ms -------------------------------------------------------------------------------- /achieves/Feishu天气查询机器人/images/screenshot_20240620091344.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/Feishu天气查询机器人/images/screenshot_20240620091344.png -------------------------------------------------------------------------------- /achieves/Feishu天气查询机器人/images/screenshot_20240620091358.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/Feishu天气查询机器人/images/screenshot_20240620091358.png -------------------------------------------------------------------------------- /achieves/Feishu天气查询机器人/images/screenshot_20240620091558.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/Feishu天气查询机器人/images/screenshot_20240620091558.png -------------------------------------------------------------------------------- /achieves/Feishu天气查询机器人/images/screenshot_20240620091615.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/Feishu天气查询机器人/images/screenshot_20240620091615.png -------------------------------------------------------------------------------- /achieves/Feishu天气查询机器人/images/screenshot_20240620091629.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/Feishu天气查询机器人/images/screenshot_20240620091629.png -------------------------------------------------------------------------------- /achieves/Feishu天气查询机器人/images/screenshot_20240620091642.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/Feishu天气查询机器人/images/screenshot_20240620091642.png -------------------------------------------------------------------------------- /achieves/Feishu天气查询机器人/images/screenshot_20240620091705.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/Feishu天气查询机器人/images/screenshot_20240620091705.png -------------------------------------------------------------------------------- /achieves/Feishu天气查询机器人/images/screenshot_20240620091716.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/Feishu天气查询机器人/images/screenshot_20240620091716.png -------------------------------------------------------------------------------- /achieves/Feishu天气查询机器人/images/screenshot_20240620091731.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/Feishu天气查询机器人/images/screenshot_20240620091731.png -------------------------------------------------------------------------------- /achieves/Feishu天气查询机器人/images/screenshot_20240620091750.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/Feishu天气查询机器人/images/screenshot_20240620091750.png -------------------------------------------------------------------------------- /achieves/Feishu天气查询机器人/images/screenshot_20240620091811.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/Feishu天气查询机器人/images/screenshot_20240620091811.png -------------------------------------------------------------------------------- /achieves/Feishu天气查询机器人/images/screenshot_20240620091830.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/Feishu天气查询机器人/images/screenshot_20240620091830.png -------------------------------------------------------------------------------- /achieves/GitHub工单机器人/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/GitHub工单机器人/README.md -------------------------------------------------------------------------------- /achieves/GitHub工单机器人/bot.conversations.c66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/GitHub工单机器人/bot.conversations.c66 -------------------------------------------------------------------------------- /achieves/GitHub工单机器人/bot.dicts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/GitHub工单机器人/bot.dicts.json -------------------------------------------------------------------------------- /achieves/GitHub工单机器人/bot.faqs.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /achieves/GitHub工单机器人/bot.intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/GitHub工单机器人/bot.intents.json -------------------------------------------------------------------------------- /achieves/GitHub工单机器人/conversations/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/GitHub工单机器人/conversations/index.json -------------------------------------------------------------------------------- /achieves/GitHub工单机器人/conversations/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/GitHub工单机器人/conversations/plugin.js -------------------------------------------------------------------------------- /achieves/GitHub工单机器人/conversations/zh_CN.__post__.ms: -------------------------------------------------------------------------------- 1 | + (帮助|help|h) 2 | - ^getHelp() 3 | -------------------------------------------------------------------------------- /achieves/GitHub工单机器人/conversations/zh_CN.greetings.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/GitHub工单机器人/conversations/zh_CN.greetings.ms -------------------------------------------------------------------------------- /achieves/GitHub工单机器人/conversations/zh_CN.issues.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/GitHub工单机器人/conversations/zh_CN.issues.ms -------------------------------------------------------------------------------- /achieves/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/README.md -------------------------------------------------------------------------------- /achieves/保健品/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /achieves/保健品/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/保健品/README.MD -------------------------------------------------------------------------------- /achieves/保健品/bot.conversations.c66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/保健品/bot.conversations.c66 -------------------------------------------------------------------------------- /achieves/保健品/bot.faqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/保健品/bot.faqs.json -------------------------------------------------------------------------------- /achieves/保健品/flow.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/保健品/flow.xlsx -------------------------------------------------------------------------------- /achieves/信用卡/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /achieves/信用卡/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/信用卡/README.MD -------------------------------------------------------------------------------- /achieves/信用卡/bot.conversations.c66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/信用卡/bot.conversations.c66 -------------------------------------------------------------------------------- /achieves/信用卡/bot.faqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/信用卡/bot.faqs.json -------------------------------------------------------------------------------- /achieves/信用卡/flow.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/信用卡/flow.xlsx -------------------------------------------------------------------------------- /achieves/回访/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /achieves/回访/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/回访/README.md -------------------------------------------------------------------------------- /achieves/回访/bot.conversations.c66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/回访/bot.conversations.c66 -------------------------------------------------------------------------------- /achieves/回访/bot.faqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/回访/bot.faqs.json -------------------------------------------------------------------------------- /achieves/回访/flow.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/回访/flow.xlsx -------------------------------------------------------------------------------- /achieves/天气查询/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/天气查询/.gitignore -------------------------------------------------------------------------------- /achieves/天气查询/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/天气查询/README.md -------------------------------------------------------------------------------- /achieves/天气查询/bot.conversations.c66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/天气查询/bot.conversations.c66 -------------------------------------------------------------------------------- /achieves/天气查询/bot.faqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/天气查询/bot.faqs.json -------------------------------------------------------------------------------- /achieves/房产/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /achieves/房产/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/房产/README.MD -------------------------------------------------------------------------------- /achieves/房产/bot.faqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/房产/bot.faqs.json -------------------------------------------------------------------------------- /achieves/房产/flow.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/房产/flow.xlsx -------------------------------------------------------------------------------- /achieves/教育培训/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /achieves/教育培训/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/教育培训/README.MD -------------------------------------------------------------------------------- /achieves/教育培训/bot.conversations.c66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/教育培训/bot.conversations.c66 -------------------------------------------------------------------------------- /achieves/教育培训/bot.faqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/教育培训/bot.faqs.json -------------------------------------------------------------------------------- /achieves/教育培训/flow.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/教育培训/flow.xlsx -------------------------------------------------------------------------------- /achieves/法律服务/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /achieves/法律服务/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/法律服务/README.MD -------------------------------------------------------------------------------- /achieves/法律服务/bot.conversations.c66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/法律服务/bot.conversations.c66 -------------------------------------------------------------------------------- /achieves/法律服务/bot.faqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/法律服务/bot.faqs.json -------------------------------------------------------------------------------- /achieves/法律服务/flow.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/法律服务/flow.xlsx -------------------------------------------------------------------------------- /achieves/活动通知/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/活动通知/.gitignore -------------------------------------------------------------------------------- /achieves/活动通知/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/活动通知/README.md -------------------------------------------------------------------------------- /achieves/活动通知/bot.conversations.c66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/活动通知/bot.conversations.c66 -------------------------------------------------------------------------------- /achieves/活动通知/bot.faqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/活动通知/bot.faqs.json -------------------------------------------------------------------------------- /achieves/活动通知/flow.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/活动通知/flow.mdj -------------------------------------------------------------------------------- /achieves/活动通知/flow.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/活动通知/flow.xlsx -------------------------------------------------------------------------------- /achieves/理财/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /achieves/理财/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/理财/README.MD -------------------------------------------------------------------------------- /achieves/理财/bot.conversations.c66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/理财/bot.conversations.c66 -------------------------------------------------------------------------------- /achieves/理财/bot.faqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/理财/bot.faqs.json -------------------------------------------------------------------------------- /achieves/理财/flow.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/理财/flow.xlsx -------------------------------------------------------------------------------- /achieves/财税/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /achieves/财税/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/财税/README.md -------------------------------------------------------------------------------- /achieves/财税/bot.conversations.c66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/财税/bot.conversations.c66 -------------------------------------------------------------------------------- /achieves/财税/bot.faqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/财税/bot.faqs.json -------------------------------------------------------------------------------- /achieves/财税/flow.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/财税/flow.xlsx -------------------------------------------------------------------------------- /achieves/酒水/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /achieves/酒水/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/酒水/README.MD -------------------------------------------------------------------------------- /achieves/酒水/bot.conversations.c66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/酒水/bot.conversations.c66 -------------------------------------------------------------------------------- /achieves/酒水/bot.faqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/酒水/bot.faqs.json -------------------------------------------------------------------------------- /achieves/酒水/flow.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/酒水/flow.xlsx -------------------------------------------------------------------------------- /achieves/闲聊/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/闲聊/.gitignore -------------------------------------------------------------------------------- /achieves/闲聊/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/闲聊/LICENSE -------------------------------------------------------------------------------- /achieves/闲聊/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/闲聊/README.md -------------------------------------------------------------------------------- /achieves/闲聊/assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/闲聊/assets/1.png -------------------------------------------------------------------------------- /achieves/闲聊/bot.conversations.c66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/闲聊/bot.conversations.c66 -------------------------------------------------------------------------------- /achieves/闲聊/bot.faqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/achieves/闲聊/bot.faqs.json -------------------------------------------------------------------------------- /assets/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/1.jpg -------------------------------------------------------------------------------- /assets/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/10.jpg -------------------------------------------------------------------------------- /assets/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/11.jpg -------------------------------------------------------------------------------- /assets/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/12.jpg -------------------------------------------------------------------------------- /assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/2.png -------------------------------------------------------------------------------- /assets/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/3.jpg -------------------------------------------------------------------------------- /assets/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/4.jpg -------------------------------------------------------------------------------- /assets/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/5.jpg -------------------------------------------------------------------------------- /assets/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/6.png -------------------------------------------------------------------------------- /assets/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/7.jpg -------------------------------------------------------------------------------- /assets/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/8.png -------------------------------------------------------------------------------- /assets/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/9.jpg -------------------------------------------------------------------------------- /assets/WechatIMG4918.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/WechatIMG4918.jpeg -------------------------------------------------------------------------------- /assets/demo-contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/demo-contact.json -------------------------------------------------------------------------------- /assets/image-2021-05-14-095741.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/image-2021-05-14-095741.png -------------------------------------------------------------------------------- /assets/images/screenshot_20240620093658.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/images/screenshot_20240620093658.png -------------------------------------------------------------------------------- /assets/images/screenshot_20240627135527.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/images/screenshot_20240627135527.png -------------------------------------------------------------------------------- /assets/images/screenshot_20240627135732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/images/screenshot_20240627135732.png -------------------------------------------------------------------------------- /assets/sample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/sample.sh -------------------------------------------------------------------------------- /assets/tpls/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/tpls/.gitignore -------------------------------------------------------------------------------- /assets/tpls/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/tpls/LICENSE -------------------------------------------------------------------------------- /assets/tpls/README.ap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/tpls/README.ap -------------------------------------------------------------------------------- /assets/tpls/botarchive/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/tpls/botarchive/index.json -------------------------------------------------------------------------------- /assets/tpls/botarchive/plugin.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/tpls/botarchive/zh_CN.greetings.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/tpls/botarchive/zh_CN.greetings.ms -------------------------------------------------------------------------------- /assets/tpls/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/tpls/package.json -------------------------------------------------------------------------------- /assets/tpls/sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/tpls/sample.env -------------------------------------------------------------------------------- /assets/tpls/scripts/archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/tpls/scripts/archive.sh -------------------------------------------------------------------------------- /assets/tpls/scripts/bot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/tpls/scripts/bot -------------------------------------------------------------------------------- /assets/tpls/scripts/chat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/tpls/scripts/chat.sh -------------------------------------------------------------------------------- /assets/tpls/scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/tpls/scripts/deploy.sh -------------------------------------------------------------------------------- /assets/tpls/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/tpls/scripts/install.sh -------------------------------------------------------------------------------- /assets/tpls/scripts/trace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/assets/tpls/scripts/trace.sh -------------------------------------------------------------------------------- /bin/commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/bin/commit.sh -------------------------------------------------------------------------------- /bin/export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/bin/export.sh -------------------------------------------------------------------------------- /bin/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/bin/import.sh -------------------------------------------------------------------------------- /bin/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/bin/package.sh -------------------------------------------------------------------------------- /docs/development_cde.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/docs/development_cde.md -------------------------------------------------------------------------------- /docs/development_nodejs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/docs/development_nodejs.md -------------------------------------------------------------------------------- /docs/import_bot_to_cloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/docs/import_bot_to_cloud.md -------------------------------------------------------------------------------- /projects/GuessNumberBot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/GuessNumberBot/.gitignore -------------------------------------------------------------------------------- /projects/GuessNumberBot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/GuessNumberBot/README.md -------------------------------------------------------------------------------- /projects/GuessNumberBot/assets/screenshot_20240627153349.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/GuessNumberBot/assets/screenshot_20240627153349.png -------------------------------------------------------------------------------- /projects/GuessNumberBot/assets/screenshot_20240627154900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/GuessNumberBot/assets/screenshot_20240627154900.png -------------------------------------------------------------------------------- /projects/GuessNumberBot/bot.conversations.c66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/GuessNumberBot/bot.conversations.c66 -------------------------------------------------------------------------------- /projects/GuessNumberBot/bot.dicts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/GuessNumberBot/bot.dicts.json -------------------------------------------------------------------------------- /projects/GuessNumberBot/bot.faqs.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /projects/GuessNumberBot/bot.intents.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /projects/GuessNumberBot/conversations/en_US.greetings.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/GuessNumberBot/conversations/en_US.greetings.ms -------------------------------------------------------------------------------- /projects/GuessNumberBot/conversations/en_US.guess_the_number.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/GuessNumberBot/conversations/en_US.guess_the_number.ms -------------------------------------------------------------------------------- /projects/GuessNumberBot/conversations/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/GuessNumberBot/conversations/index.json -------------------------------------------------------------------------------- /projects/GuessNumberBot/conversations/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/GuessNumberBot/conversations/plugin.js -------------------------------------------------------------------------------- /projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/README.md -------------------------------------------------------------------------------- /projects/冰箱报修服务机器人/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/冰箱报修服务机器人/.env -------------------------------------------------------------------------------- /projects/冰箱报修服务机器人/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/冰箱报修服务机器人/README.md -------------------------------------------------------------------------------- /projects/冰箱报修服务机器人/assets/screenshot_20240627161133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/冰箱报修服务机器人/assets/screenshot_20240627161133.png -------------------------------------------------------------------------------- /projects/冰箱报修服务机器人/assets/screenshot_20240628102540.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/冰箱报修服务机器人/assets/screenshot_20240628102540.png -------------------------------------------------------------------------------- /projects/冰箱报修服务机器人/bot.conversations.c66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/冰箱报修服务机器人/bot.conversations.c66 -------------------------------------------------------------------------------- /projects/冰箱报修服务机器人/bot.dicts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/冰箱报修服务机器人/bot.dicts.json -------------------------------------------------------------------------------- /projects/冰箱报修服务机器人/bot.faqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/冰箱报修服务机器人/bot.faqs.json -------------------------------------------------------------------------------- /projects/冰箱报修服务机器人/bot.intents.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /projects/冰箱报修服务机器人/conversations/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/冰箱报修服务机器人/conversations/index.json -------------------------------------------------------------------------------- /projects/冰箱报修服务机器人/conversations/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/冰箱报修服务机器人/conversations/plugin.js -------------------------------------------------------------------------------- /projects/冰箱报修服务机器人/conversations/zh_CN.greetings.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/冰箱报修服务机器人/conversations/zh_CN.greetings.ms -------------------------------------------------------------------------------- /projects/招聘面试机器人/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/招聘面试机器人/.env -------------------------------------------------------------------------------- /projects/招聘面试机器人/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/招聘面试机器人/README.md -------------------------------------------------------------------------------- /projects/招聘面试机器人/assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/招聘面试机器人/assets/1.png -------------------------------------------------------------------------------- /projects/招聘面试机器人/assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/招聘面试机器人/assets/2.png -------------------------------------------------------------------------------- /projects/招聘面试机器人/assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/招聘面试机器人/assets/3.png -------------------------------------------------------------------------------- /projects/招聘面试机器人/assets/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/招聘面试机器人/assets/4.png -------------------------------------------------------------------------------- /projects/招聘面试机器人/assets/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/招聘面试机器人/assets/5.png -------------------------------------------------------------------------------- /projects/招聘面试机器人/assets/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/招聘面试机器人/assets/6.png -------------------------------------------------------------------------------- /projects/招聘面试机器人/assets/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/招聘面试机器人/assets/7.png -------------------------------------------------------------------------------- /projects/招聘面试机器人/assets/screenshot_20240627151920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/招聘面试机器人/assets/screenshot_20240627151920.png -------------------------------------------------------------------------------- /projects/招聘面试机器人/bot.conversations.c66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/招聘面试机器人/bot.conversations.c66 -------------------------------------------------------------------------------- /projects/招聘面试机器人/bot.faqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/招聘面试机器人/bot.faqs.json -------------------------------------------------------------------------------- /projects/招聘面试机器人/conversations/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/招聘面试机器人/conversations/index.json -------------------------------------------------------------------------------- /projects/招聘面试机器人/conversations/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/招聘面试机器人/conversations/plugin.js -------------------------------------------------------------------------------- /projects/招聘面试机器人/conversations/zh_CN.background.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/招聘面试机器人/conversations/zh_CN.background.ms -------------------------------------------------------------------------------- /projects/招聘面试机器人/conversations/zh_CN.basic.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/招聘面试机器人/conversations/zh_CN.basic.ms -------------------------------------------------------------------------------- /projects/招聘面试机器人/conversations/zh_CN.close.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/招聘面试机器人/conversations/zh_CN.close.ms -------------------------------------------------------------------------------- /projects/招聘面试机器人/conversations/zh_CN.greetings.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/招聘面试机器人/conversations/zh_CN.greetings.ms -------------------------------------------------------------------------------- /projects/招聘面试机器人/conversations/zh_CN.mental.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/招聘面试机器人/conversations/zh_CN.mental.ms -------------------------------------------------------------------------------- /projects/招聘面试机器人/conversations/zh_CN.nlp.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/招聘面试机器人/conversations/zh_CN.nlp.ms -------------------------------------------------------------------------------- /projects/招聘面试机器人/conversations/zh_CN.nodejs.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/招聘面试机器人/conversations/zh_CN.nodejs.ms -------------------------------------------------------------------------------- /projects/讲笑话机器人/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/讲笑话机器人/.gitignore -------------------------------------------------------------------------------- /projects/讲笑话机器人/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/讲笑话机器人/LICENSE -------------------------------------------------------------------------------- /projects/讲笑话机器人/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/讲笑话机器人/README.md -------------------------------------------------------------------------------- /projects/讲笑话机器人/assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/讲笑话机器人/assets/1.png -------------------------------------------------------------------------------- /projects/讲笑话机器人/assets/jokes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/讲笑话机器人/assets/jokes.json -------------------------------------------------------------------------------- /projects/讲笑话机器人/assets/screenshot_20240627141615.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/讲笑话机器人/assets/screenshot_20240627141615.png -------------------------------------------------------------------------------- /projects/讲笑话机器人/bot.conversations.c66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/讲笑话机器人/bot.conversations.c66 -------------------------------------------------------------------------------- /projects/讲笑话机器人/bot.dicts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/讲笑话机器人/bot.dicts.json -------------------------------------------------------------------------------- /projects/讲笑话机器人/bot.faqs.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /projects/讲笑话机器人/bot.intents.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /projects/讲笑话机器人/conversations/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/讲笑话机器人/conversations/index.json -------------------------------------------------------------------------------- /projects/讲笑话机器人/conversations/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/讲笑话机器人/conversations/plugin.js -------------------------------------------------------------------------------- /projects/讲笑话机器人/conversations/zh_CN.give_me_joke.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/讲笑话机器人/conversations/zh_CN.give_me_joke.ms -------------------------------------------------------------------------------- /projects/讲笑话机器人/conversations/zh_CN.greetings.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/讲笑话机器人/conversations/zh_CN.greetings.ms -------------------------------------------------------------------------------- /projects/预定机票机器人/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/预定机票机器人/.gitignore -------------------------------------------------------------------------------- /projects/预定机票机器人/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/预定机票机器人/README.md -------------------------------------------------------------------------------- /projects/预定机票机器人/assets/screenshot_20240627140852.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/预定机票机器人/assets/screenshot_20240627140852.png -------------------------------------------------------------------------------- /projects/预定机票机器人/bot.conversations.c66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/预定机票机器人/bot.conversations.c66 -------------------------------------------------------------------------------- /projects/预定机票机器人/bot.dicts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/预定机票机器人/bot.dicts.json -------------------------------------------------------------------------------- /projects/预定机票机器人/bot.faqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/预定机票机器人/bot.faqs.json -------------------------------------------------------------------------------- /projects/预定机票机器人/bot.intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/预定机票机器人/bot.intents.json -------------------------------------------------------------------------------- /projects/预定机票机器人/conversations/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/预定机票机器人/conversations/index.json -------------------------------------------------------------------------------- /projects/预定机票机器人/conversations/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/预定机票机器人/conversations/plugin.js -------------------------------------------------------------------------------- /projects/预定机票机器人/conversations/zh_CN.__pre__.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/预定机票机器人/conversations/zh_CN.__pre__.ms -------------------------------------------------------------------------------- /projects/预定机票机器人/conversations/zh_CN.greetings.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/预定机票机器人/conversations/zh_CN.greetings.ms -------------------------------------------------------------------------------- /projects/预定机票机器人/conversations/zh_CN.intents.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/预定机票机器人/conversations/zh_CN.intents.ms -------------------------------------------------------------------------------- /projects/预定机票机器人/sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/chatbot-samples/HEAD/projects/预定机票机器人/sample.env --------------------------------------------------------------------------------