You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/langchain/chains/ape/prompt.py

10 lines
285 B
Python

# flake8: noqa
from langchain.prompts.prompt import Prompt
_TEMPLATE = """I gave a friend an instruction. Based on the instruction they produced the following input-output pairs:
{examples}
The instruction was to"""
PROMPT = Prompt(input_variables=["examples"], template=_TEMPLATE)