Slide 10
Slide 10 text
1. Wikipediaのあらすじ(491文字)と2. The refine
Chainテンプレート〃カスタマイズとの比較
prompt_template = """次の文章の簡潔なあらすじを500文字程度で記してください:
{text}
簡潔な日本語のあらすじ:"""
PROMPT = PromptTemplate(template=prompt_template, input_variables=["text"])
refine_template = (
"あなたの仕事は最終的なあらすじを400文字程度で作ることです¥n"
"途中までのあらすじがあります: {existing_answer}¥n"
"必要に応じて下記の文章を使い、さらに良いあらすじを作成してください¥n"
"------------¥n"
"{text}¥n"
"------------¥n"
"与えられた文章を踏まえて、日本語であらすじを改善してください"
"与えられた文章が有用でない場合、途中までの文章を返してください"
)
refine_prompt = PromptTemplate(
input_variables=["existing_answer", "text"],
template=refine_template,
)