fix llm math prompt (#466)

basically, it didnt realize that the question was over after the input
and would some times hallucinate more input
pull/469/head
Harrison Chase 2 years ago committed by GitHub
parent 95157d0aad
commit c65efd2986
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -33,6 +33,7 @@ print(37593 * 67)
```
Answer: 2518731
Question: {question}"""
Question: {question}
"""
PROMPT = PromptTemplate(input_variables=["question"], template=_PROMPT_TEMPLATE)

Loading…
Cancel
Save