group-wbl/.venv/lib/python3.13/site-packages/langchain_classic/output_parsers/prompts.py

22 lines
507 B
Python
Raw Normal View History

2026-01-09 09:48:03 +08:00
from langchain_core.prompts.prompt import PromptTemplate
NAIVE_FIX = """Instructions:
--------------
{instructions}
--------------
Completion:
--------------
{completion}
--------------
Above, the Completion did not satisfy the constraints given in the Instructions.
Error:
--------------
{error}
--------------
Please try again. Please only respond with an answer that satisfies the constraints laid out in the Instructions:""" # noqa: E501
NAIVE_FIX_PROMPT = PromptTemplate.from_template(NAIVE_FIX)