(self, parameters)
| 8 | |
| 9 | class WeatherSceneProcessor(SceneProcessor): |
| 10 | def __init__(self, parameters): |
| 11 | self.slot_template = get_raw_slot(parameters) |
| 12 | self.slot = get_raw_slot(parameters) |
| 13 | self.scene_prompts = load_file_to_obj('scene_config/scene_prompts.json') |
| 14 | |
| 15 | def process(self, user_input, context): |
| 16 | # 处理用户输入,更新槽位,检查完整性,以及与用户交互 |
nothing calls this directly
no test coverage detected