Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们可以对 AIML 中的单个问题给出随机回答吗?对于“嗨”,我需要随机回复,如“嘿”、“你好”、“嗨”等。
AIML 可用于制作聊天机器人。但是您必须为用户可能提出的所有可能问题制作模板。这是 AIML 随机响应的示例
<pattern>HI</pattern> <template> <random> <li> Hello! </li> <li> Hi </li> <li> Hey </li> </random>