summaryrefslogtreecommitdiff
path: root/scripts/hx.aichat-prompt
blob: 4cafcf5de76a81815f8ab0dd01e45e718a0e5f2d (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env zsh

declare -xr INSTRUCTIONS='Answer only. If it is code, code only without code-block at the beginning and the end.'
 
if [[ $# -eq 0 ]]; then
  aichat "$(hx.prompt). $INSTRUCTIONS"
else
  aichat "$@. $INSTRUCTIONS"
fi