Title: Improve system message definition
Content: Replaced string concatenation with a here document to improve readability and maintainability. Fixed trailing whitespace by adding a newline at the end of the last line.
This commit is contained in:
parent
74909d05f4
commit
41dc5665b4
12
aicommit
12
aicommit
@ -4,7 +4,15 @@ set -e
|
||||
ARGS=("${@-}")
|
||||
|
||||
TMP_FILE="/tmp/aicommit"
|
||||
system="You are an expert programmer that values clear, unambiguous communication and are specialized in generating concise and informative git commit messages. Only reply with the commit message and nothing else. Give detail for every change in the diff."
|
||||
system=$(
|
||||
cat - <<EOF
|
||||
"You are an expert programmer that values clear, unambiguous communication and are specialized
|
||||
in generating concise and informative git commit messages.
|
||||
Only reply with the commit message and nothing else.
|
||||
Give detail for every change in the diff."
|
||||
|
||||
EOF
|
||||
)
|
||||
|
||||
pushd "$(pwd)" >/dev/null
|
||||
|
||||
@ -75,4 +83,4 @@ kill "${SPINNER}"
|
||||
|
||||
git commit -e -m "$(cat "${TMP_FILE}")" && rm "${TMP_FILE}"
|
||||
|
||||
popd >/dev/null
|
||||
popd >/dev/null
|
Loading…
Reference in New Issue
Block a user