After the last update, in a new project with Azure openAI 4o-mini with pinecone, when using
vector chat_engine = vector_index.as_query_engine(chat_mode="condense_plus_context",llm=azure-gpt4o-mini, memory=redis_memory, context_prompt="""Your name is John.... {context_str}...""",query_str=user_input, filters=combined_filters, similarity_top_k=3, verbose=True)
The context_prompt is "being ignored" but context_str is being passed.
When asked "What is your name?" it does not know (it gets context from the index - used "Alice in wonderland" as example, and uses it to answer, not the "You are John" as instructed).
hello, what is your name?
I’m afraid I can’t explain myself, as I’m not quite sure who I am at the moment.
I have tried with GPT4o (not mini) and get the same behavior. Anyone with any similar issue? I have the same code in another version and I believe I never had these issues.