■ load_prompt 함수를 사용해 YAML 파일에서 PromptTemplate 객체를 만드는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 |
from langchain_core.prompts import load_prompt promptTemplate = load_prompt("fruit_color.yaml") print(promptTemplate) """ input_variables=['fruit'] input_types={} partial_variables={} template='{fruit}의 색상이 무엇입니까?' """ |
※ pip install langchain 명령을 실행했다.