python

[GPT] Few-shot examples for chat models

으누아빠 2024. 3. 27. 17:55
반응형

 

[결과]

AIMessageChunk(content='A triangle does not have a square. The square of a number is the result of multiplying the number by itself.')

 

템플릿의 기본 구성 요소는 다음과 같습니다.

 - examples: 최종 프롬프트에 포함할 사전 예제 목록입니다. 

- example_prompt: format_messages 메서드를 통해 각 예제를 하나 이상의 메시지로 변환합니다. 일반적인 예는 각 예를 하나의 인간 메시지와 하나의 AI 메시지 응답으로 변환하거나 인간 메시지와 함수 호출 메시지로 변환하는 것입니다.

'python' 카테고리의 다른 글

[GPT] 외부파일에서 prompt 가져오기  (0) 2024.03.28
[GPT] LengthBasedExampleSelector  (0) 2024.03.28
[GPT] FewShotPromptTemplate  (0) 2024.03.27
[GPT] chain 연결  (0) 2024.03.27
[GPT] OutputParser and LCEL  (0) 2024.03.26