Articles → LANGCHAIN → PromptTemplate In Langchain
Prompttemplate In Langchain
Purpose
Example
from langchain_core.prompts import PromptTemplate
template = "Write a short summary about {topic} in simple words."
prompt = PromptTemplate(
input_variables=["topic"],
template=template
)
formatted_prompt = prompt.format(topic="Artificial Intelligence")
print(formatted_prompt)
Output
| Posted By - | Karan Gupta |
| |
| Posted On - | Tuesday, May 12, 2026 |