From e2fea3ece784a12830509b270394ad260fb59c50 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Sat, 5 Aug 2023 19:02:11 +0700 Subject: [PATCH] Formatting --- humanscript | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/humanscript b/humanscript index af25bcf..364202c 100755 --- a/humanscript +++ b/humanscript @@ -57,7 +57,10 @@ stringified_system_prompt=$(echo "${system_prompt}"| jq -sRr @json) stringified_user_prompt=$(echo "${user_prompt}"| jq -sRr @json) data=$(echo '{ "model": "'$HUMANSCRIPT_MODEL'", - "messages": [{"role": "system", "content": '$stringified_system_prompt'},{"role": "user", "content": '$stringified_user_prompt'}], + "messages": [ + {"role": "system", "content": '$stringified_system_prompt'}, + {"role": "user", "content": '$stringified_user_prompt'} + ], "temperature": 0.7, "max_tokens": 1000, "stream": true