处理用户输入和上下文,返回处理结果 :param user_input: 用户的输入 :param context: 对话的上下文 :return: 处理结果
(self, user_input, context)
| 1 | # encoding=utf-8 |
| 2 | class SceneProcessor: |
| 3 | def process(self, user_input, context): |
| 4 | """ |
| 5 | 处理用户输入和上下文,返回处理结果 |
| 6 | :param user_input: 用户的输入 |
| 7 | :param context: 对话的上下文 |
| 8 | :return: 处理结果 |
| 9 | """ |
| 10 | raise NotImplementedError |
no outgoing calls
no test coverage detected