Anyone knows if there's a way to query again new nodes every time in chat_engine?
from llama_index.chat_engine import CondenseQuestionChatEngine
query_engine = index.as_query_engine()
chat_engine = CondenseQuestionChatEngine.from_defaults(
query_engine=query_engine,
condense_question_prompt=custom_prompt,
chat_history=custom_chat_history,
verbose=True
)
response = chat_engine.chat("what about the deeplink issue?")
print(response)
Here's my code and it doesn't query anything related to deeplink. Instead, it query something related to my custom chat history.