@Logan M can you give me some advice on how can I replace this part
custom_prompt = PromptTemplate(
"""\
Given a conversation (between Human and Assistant) and a follow up message from Human, \
rewrite the message to be a standalone question that captures all relevant context \
from the conversation.
<Chat History>
{chat_history}
<Follow Up Message>
{question}
<Standalone question>
"""
)
with somthing like
my_template = "Given a conversation (between Human and Assistant) and a follow up message from Human, rewrite the message to be a standalone question that captures all relevant context from the conversation.
<Chat History>
{chat_history}
<Follow Up Message>
{question}
<Standalone question>"
custom_prompt = PromptTemplate(my_template)