The community member is trying to access the processed question that the CondenseQuestionChatEngine generates. When running the code with verbose=True, the console displays the query "How are you?". The community member wants to save this processed question to use for fine-tuning, instead of the original question. A comment suggests that the community member can try calling the _condense_question method to get the processed question.
Hi! I want to know if there is a way to get the processed question that the CondenseQuestionChatEngine makes. When I run the code with verbose=True: self.chat_engine = CondenseQuestionChatEngine.from_defaults(
query_engine=self.query_engine, verbose=True, memory=self.memory
) I get in the console: Querying with: How are you? I want to save that question to do fine tuning with the processed question and not with the real question