prompt cleanup (#8470)

This commit is contained in:
Harrison Chase 2023-07-30 10:47:31 -07:00 committed by GitHub
parent 4d526c49ed
commit 18a2452121
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,18 +34,18 @@ class SearchQueries(BaseModel):
DEFAULT_LLAMA_SEARCH_PROMPT = PromptTemplate( DEFAULT_LLAMA_SEARCH_PROMPT = PromptTemplate(
input_variables=["question"], input_variables=["question"],
template="""<<SYS>> \n You are an assistant tasked with improving Google search template="""<<SYS>> \n You are an assistant tasked with improving Google search \
results. \n <</SYS>> \n\n [INST] Generate THREE Google search queries that results. \n <</SYS>> \n\n [INST] Generate THREE Google search queries that \
are similar to this question. The output should be a numbered list of questions are similar to this question. The output should be a numbered list of questions \
and each should have a question mark at the end: \n\n {question} [/INST]""", and each should have a question mark at the end: \n\n {question} [/INST]""",
) )
DEFAULT_SEARCH_PROMPT = PromptTemplate( DEFAULT_SEARCH_PROMPT = PromptTemplate(
input_variables=["question"], input_variables=["question"],
template="""You are an assistant tasked with improving Google search template="""You are an assistant tasked with improving Google search \
results. Generate THREE Google search queries that are similar to results. Generate THREE Google search queries that are similar to \
this question. The output should be a numbered list of questions and each this question. The output should be a numbered list of questions and each \
should have a question mark at the end: {question}""", should have a question mark at the end: {question}""",
) )