[Feature Request] Prompt Customization
This is also part of #105, currently this is the prompt that's always used:
prompt = f"""Use the following pieces of context to answer the query at the end. If you don't know the answer, just say that you don't know, don't try to make up an answer.
{context}
Query: {input_query}
Helpful Answer:
"""
this should be customizable. I think everyone agrees. The question is whether it should be a class attribute of the app, or on a per question basis.
I would like to see #63 merged first, so we don't have a merge conflict. Then I can work on this.
The question is whether it should be a class attribute of the app, or on a per question basis.
Although it does add more (optional) boilerplate, the per question basis allows for higher customization. Also, we have not thought of a way to implement "global" class attribute settings, so this also speaks for the per question variant.
Waiting to see if we can merge #63, then this should be easy.