提示词模板
<h2>一、LangChain 提示词模板系统</h2><p>LangChain PromptTemplate 管理和复用提示词模板。</p><h3>1. 基础模板</h3><pre><code>from langchain.prompts import PromptTemplate
template = PromptTemplate.from_template("请用{style}风格写文案")
prompt = template.format(style="幽默")</code></pre><h2>二、Chat 模板</h2><pre><code>from langchain.prompts import ChatPromptTemplate
template = ChatPromptTemplate.from_messages([("system","你是{role}"),("user","{question}")])</code></pre>