mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-22 23:00:00 +00:00
prompt cleanup (#8470)
This commit is contained in:
parent
4d526c49ed
commit
18a2452121
@ -34,17 +34,17 @@ class SearchQueries(BaseModel):
|
||||
|
||||
DEFAULT_LLAMA_SEARCH_PROMPT = PromptTemplate(
|
||||
input_variables=["question"],
|
||||
template="""<<SYS>> \n You are an assistant tasked with improving Google search
|
||||
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
|
||||
template="""<<SYS>> \n You are an assistant tasked with improving Google search \
|
||||
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 \
|
||||
and each should have a question mark at the end: \n\n {question} [/INST]""",
|
||||
)
|
||||
|
||||
DEFAULT_SEARCH_PROMPT = PromptTemplate(
|
||||
input_variables=["question"],
|
||||
template="""You are an assistant tasked with improving Google search
|
||||
results. Generate THREE Google search queries that are similar to
|
||||
this question. The output should be a numbered list of questions and each
|
||||
template="""You are an assistant tasked with improving Google search \
|
||||
results. Generate THREE Google search queries that are similar to \
|
||||
this question. The output should be a numbered list of questions and each \
|
||||
should have a question mark at the end: {question}""",
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user