#Least-to-Most Prompting이란 무엇인가요?

Least to Most prompting (LtM)은 CoT 프롬프팅을 한 단계 더 나아가서, 문제를 하위 문제로 분해한 다음 각각을 해결하는 기술입니다! 이 기술은 아이들을 위한 현실적인 교육 전략에서 영감을 받은 것이죠 😝

CoT 프롬프팅과 마찬가지로, 해결해야 할 문제는 서로 연계되는 하위 문제로 분해됩니다. 두 번째 단계에서는 이러한 하위 문제가 하나씩 해결됩니다.

이전 하위 문제의 해결책이 다음 문제를 해결하려는 프롬프트에 입력되는 차이점이 있습니다.

Untitled

#Least-to-Most Prompting의 예시는 무엇인가요?

예시) 고객 문의 응답 - 복잡한 고객 서비스 질문

Prompt ↓

CUSTOMER INQUIRY: I just bought a T-shirt from your Arnold collection on March 1st. I saw that it was on discount, so bought a shirt that was originally $30, and got 40% off. I saw that you have a new discount for shirts at 50%. I'm wondering if I can return the shirt and have enough store credit to buy two of your shirts? INSTRUCTIONS: You are a customer service agent tasked with kindly responding to customer inquiries. Returns are allowed within 30 days. Today's date is March 29th. There is currently a 50% discount on all shirts. Shirt prices range from $18-$100 at your store. Do not make up any information about discount policies. Determine if the customer is within the 30-day return window. Let's go step by step.

Output ↓

Yes, the customer is within the 30-day return window. The customer purchased the shirt on March 1st, and today's date is March 29th, which is within the 30-day return window. Therefore, the customer is eligible to return the shirt and receive store credit for the purchase. The customer can use the store credit to purchase two shirts at the current 50% discount.

⇒ 이 예시에서는 "한 번에 하나씩"이라는 접근법을 사용하여, 주어진 문제를 작은 문제로 분해한 다음 각각을 해결하는 방법을 사용합니다!