about summary refs log tree commit diff stats
path: root/bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash')
-rwxr-xr-xbash/dds8
1 files changed, 5 insertions, 3 deletions
diff --git a/bash/dds b/bash/dds
index 90d3784..f14a79b 100755
--- a/bash/dds
+++ b/bash/dds
@@ -13,10 +13,12 @@ DEFAULT_LOOPS=2
 
 # --- Argument Validation ---
 if [ "$#" -lt 1 ]; then
+    echo -e "\n\tDaydreaming"
+    echo -e "\tThis script uses a sequence of LLM calls to refine an initial response."
     echo -e "\n\tUsage: $0 [-f <file_path>] \"<your prompt>\" [number_of_refinement_loops]"
-    echo -e "\tExample: $0 -f ./input.txt \"Please summarize this text file\" 2"
-    echo -e "\tIf number_of_refinement_loops is not provided, the program will default to $DEFAULT_LOOPS loops."
-    echo -e "\t-f <file_path> (optional): Append the contents of the file to the prompt."
+    echo -e "\n\tExample: $0 -f ./input.txt \"Please summarize this text file\" 2"
+    echo -e "\n\tIf number_of_refinement_loops is not provided, the program will default to $DEFAULT_LOOPS loops."
+    echo -e "\n\t-f <file_path> (optional): Append the contents of the file to the prompt."
     echo -e "\n"
     exit 1
 fi