mirror of
https://github.com/0xacx/chatGPT-shell-cli.git
synced 2024-11-24 11:25:31 +00:00
Merge pull request #87 from tomas223/fix/multiline-file-prompt
fix: multiline file prompt input
This commit is contained in:
commit
4395626b7a
@ -125,6 +125,8 @@ request_to_image() {
|
||||
# $1 should be the message(s) formatted with role and content
|
||||
request_to_chat() {
|
||||
local message="$1"
|
||||
# escape quotation marks and newlines in the prompt
|
||||
escaped_system_prompt=$(echo "$SYSTEM_PROMPT" | sed 's/"/\\"/g' | sed ':a;N;$!ba;s/\n/\\n/g')
|
||||
curl https://api.openai.com/v1/chat/completions \
|
||||
-sS \
|
||||
-H 'Content-Type: application/json' \
|
||||
@ -132,7 +134,7 @@ request_to_chat() {
|
||||
-d '{
|
||||
"model": "'"$MODEL"'",
|
||||
"messages": [
|
||||
{"role": "system", "content": "'"$SYSTEM_PROMPT"'"},
|
||||
{"role": "system", "content": "'"$escaped_system_prompt"'"},
|
||||
'"$message"'
|
||||
],
|
||||
"max_tokens": '$MAX_TOKENS',
|
||||
|
Loading…
Reference in New Issue
Block a user