From 176d42bbda8863e2004541734b5c707f1eae3a92 Mon Sep 17 00:00:00 2001 From: Daniel Rosel Date: Thu, 2 Mar 2023 21:25:05 +0100 Subject: [PATCH] more tips --- TIPS.md | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 51 insertions(+), 3 deletions(-) diff --git a/TIPS.md b/TIPS.md index c04c242..489fd7b 100644 --- a/TIPS.md +++ b/TIPS.md @@ -1,6 +1,54 @@ + # Avoid + [ ] Putting the parameter at the end of the prompt -| Good | Bad | -|-------------------------------------------------------------|--------------------------------------------------| -| `Predict the capital of the country:\nCountry: {country}\n` | `{country}. Predict the capital of the country:` | + + + + + + + + + +
GoodBad
+
+Predict the capital of the country:
+Country: {country}
+        
+
+
+{country}. Predict the capital of the country:
+        
+
+ +# Try to ++ [ ] Make your prompt _multi-shot_ (i.e. provide examples of what you expect the answer to be given some input) + + + + + + + + + + + +
GoodBad
+
+Country: Czechia
+Capital: Prague
+---
+Country: France
+Capital: Paris
+---
+Predict the capital of the country:
+Country: {country}
+        
+
+
+Predict the capital of the country:
+Country: {country}
+        
+