I have started getting this error in subquestionoutputparser sub_questions = [SubQuestion.parse_obj(item) for item in json_dict] File "pydantic/main.py", line 525, in pydantic.main.BaseModel.parse_obj pydantic.error_wrappers.ValidationError: 1 validation error for SubQuestion root SubQuestion expected dict not str (type=type_error)
File /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/llama_index/callbacks/base.py:91, in CallbackManager.on_event_start(self, event_type, payload, event_id, **kwargs) 89 """Run handlers when an event starts and return id of event.""" 90 event_id = event_id or str(uuid.uuid4()) ---> 91 self._trace_map[self._trace_stack[-1]].append(event_id) 92 for handler in self.handlers: 93 if event_type not in handler.event_starts_to_ignore: