Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
lukechilds committed Aug 5, 2023
1 parent 06d1cd4 commit e2fea3e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion humanscript
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e2fea3e

Please sign in to comment.