llm=ChatOpenAI
. Even I indexed my entire data set, it seems it is not added in the context. Any ideas how I can let it answer more accurately? Answer:The context provided is about ... Therefore, the original answer remains the same.
QA_PROMPT_TMPL = (
"We have provided context information below. \n"
"---------------------\n"
"{context_str}"
QA_PROMPT_TMPL = (
"We have provided context information below. \n"
"---------------------\n"
"{context_str}"
"\n---------------------\n"
"Given this information, please answer the question and provide a list of condominium names, its website and price range: {query_str}\n"
index = load_index_from_disk(indexJson)
response = query_index(index, query_str, service_context, QA_PROMPT_TMPL)