Model 에게 예제를 주는 것과 같음
어떻게 대답할지에 대한 예제를 주는 것 >> prompt로 어떻게 대답할지 알려주는 것
(모델이 text를 만든다..!!)
e.g. 그동안의 대화기록의 Q&A를 학습시킨 chatbot
example_template = """
Human: {question},
AI: {answer},
"""
example_prompt = PromptTemplate.from_template(example_template)
example_prompt = PromptTemplate.from_template("Human: {question}\\nAI: {answer}")