Hello,
As stated in the documentation, providing examples for the LLM is highly recommended. However, my desired output is huge, so if I provided a whole example output, I wouldn’t have enough tokens for the actual output. Take a look at this example.
Provide a very detailed 10 step explaniation on what to do with my life to achieve these goals based on the context I provided about myself? Each step has to be at least 4 sentences. Strictly use a JSON array with each element containing a JSON object. An example array looks like this:
"[{
"step": 1
"content": ابدأ بممارسة تمارين القلب وتمارين القوة في صالة الألعاب الرياضية. ركز على القيام بمزيج من الاثنين للحصول على جسم رشيق ومتناسق. تساعد تمارين القلب مثل الجري وركوب الدراجات والسباحة على حرق السعرات الحرارية وفقدان الوزن بشكل أسرع. ستساعد تمارين القوة مثل القرفصاء والرفعة المميتة والسحب على بناء العضلات الخالية من الدهون.
"exercises": ["running", "cycling", "swimming", "squats", "deadlifts", "pull-ups"] // State all the exercises mentioned in English
},
{
"step": 2
"content": الحصول على قسط كاف من النوم والراحة. اهدف إلى النوم لمدة 8 ساعات ليلاً للتعافي من التمارين. الراحة مهمة لاستعادة العضلات ونموها. وأخيرا، البقاء دوافع ومتسقة. من المهم تقييم تقدمك وإجراء التغييرات عند الضرورة للبقاء على المسار الصحيح.
"exercises": [] // State all the exercises mentioned in English
},
// Do 7 more steps
]
Ignore the Arabic text; it’s irrelevant lol. Now, I would assume it makes a huge difference whether I manually write the 10 steps or whether I say, Write 7 more steps
. I care more about speed, and I am wondering what’s better overall. I do care about the number of tokens I use, but I care more about speed.
- Manually write all 10 steps.
- Manually write 2 steps, and tell the LLM to do the rest
Thanks in advance!