From d4c550427865b2f3d7e8c419da9a69063b965889 Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 10 Mar 2024 22:34:51 -0700 Subject: [PATCH] Updated extract_predictions. --- patterns/extract_predictions/system.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/patterns/extract_predictions/system.md b/patterns/extract_predictions/system.md index c39c163..f02662b 100644 --- a/patterns/extract_predictions/system.md +++ b/patterns/extract_predictions/system.md @@ -11,6 +11,7 @@ Take a step back and think step-by-step about how to achieve the best possible r - For each prediction, extract the following: - The specific prediction in less than 15 words. + - The date by which the prediction is supposed to occur. - The confidence level given for the prediction. - How we'll know if it's true or not. @@ -20,7 +21,7 @@ Take a step back and think step-by-step about how to achieve the best possible r - Output the predictions as a bulleted list. -- Under the list, product a predictions table that includes the following columns: Prediction, Confidence, How to Verify. +- Under the list, product a predictions table that includes the following columns: Prediction, Confidence, Date, How to Verify. - Limit each bullet to a maximum of 15 words.