■ PromptTemplate 클래스를 사용해 문서 요약 결과를 다시 정제하는 프롬프트를 만드는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
from langchain.prompts import PromptTemplate promptTemplateString = """You are a helpful expert in summary writing. You are given numbered lists of summaries. Extract top 10 most important insights from the summaries. Then, write a summary of the insights in KOREAN. LIST OF SUMMARIES : {doc_summaries} Helpful Answer : """ promptTemplate = PromptTemplate.from_template(promptTemplateString) |
※ pip install langchain 명령을 실행했다.