■ ChatPromptTemplate 클래스의 format 메소드를 사용해 채팅 프롬프트 문자열을 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from langchain_core.prompts import ChatPromptTemplate chatPromptTemplate = ChatPromptTemplate.from_template("{country}의 수도는 어디입니까?") chatPromptString = chatPromptTemplate.format(country = "한국") print(chatPromptString) """ Human: 한국의 수도는 어디입니까? """ |
※ pip install langchain 명령을 실행했다.