General
PromptBeginner5 minmarkdown
<h1 align="center">
<a href="https://prompts.chat">
5
LangChain Hub prompt for Pal
Sign in to like and favorite skills
Prompts to be used with the PAL chain. These prompts should convert a natural language problem into a series of code snippets to be run to give an answer.
This is a description of the inputs that the prompt expects.
question: The question to be answered.Below is a code snippet for how to use the prompt.
from langchain.prompts import load_prompt from langchain.chains import PALChain llm = ... stop = ... get_answer_expr = ... prompt = load_prompt('lc://prompts/pal/<file-name>') chain = PALChain(llm=llm, prompt=prompt, stop=stop, get_answer_expr=get_answer_expr)