jfeng1115's picture
init commit
58d33f0
raw
history blame contribute delete
No virus
233 Bytes
# flake8: noqa
from langchain.prompts import PromptTemplate
prompt_template = """Write a concise summary of the following:
"{text}"
CONCISE SUMMARY:"""
PROMPT = PromptTemplate(template=prompt_template, input_variables=["text"])