how do I add a custom prompt to my query engine? I want to pass in a custom prompt.
Let's say that this is my prompt, how do I pass in the context_str to this?:
custom_prompt_str = ( "Context information is below.\n" "---------------------\n" "{context_str}\n" "---------------------\n" "Given the context information and not prior knowledge, " "answer the query.\n" "Query: {query_str}\n" "Answer: " )