DeepSolanaCoder
/
venv
/lib
/python3.12
/site-packages
/langchain
/chains
/summarize
/stuff_prompt.py
| # flake8: noqa | |
| from langchain_core.prompts import PromptTemplate | |
| prompt_template = """Write a concise summary of the following: | |
| "{text}" | |
| CONCISE SUMMARY:""" | |
| PROMPT = PromptTemplate(template=prompt_template, input_variables=["text"]) | |