Skip to content

Commit

Permalink
make larger suggestion for maxLines; use highest model in pmcodevgpt
Browse files Browse the repository at this point in the history
  • Loading branch information
stoerr committed Nov 1, 2024
1 parent 0144e45 commit aac876c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bin/pmcodevgpt
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ if [[ ! "$*" =~ -cr ]] && [[ ! "$*" =~ -ca ]]; then
ARGS="-cr"
fi

chatgpt -tf <($JAVA -jar "$progdir/co-developer-gpt-engine.jar" --aitoolsdef) $ARGS "$@"
chatgpt -mh -tf <($JAVA -jar "$progdir/co-developer-gpt-engine.jar" --aitoolsdef) $ARGS "$@"
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public String openApiDescription() {
" type: string\n" +
" - name: maxLines\n" +
" in: query\n" +
" description: maximum number of lines to read from the file\n" +
" description: maximum number of lines to read from the file, e.g. 500\n" +
" required: false\n" +
" schema:\n" +
" type: integer\n" +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
},
"maxLines": {
"type": "integer",
"description": "maximum number of lines to read from the file"
"description": "maximum number of lines to read from the file, e.g. 500"
},
"startLine": {
"type": "integer",
Expand Down Expand Up @@ -231,4 +231,4 @@
],
"stdin": "$toolcall"
}
]
]
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
},
"maxLines": {
"type": "integer",
"description": "maximum number of lines to read from the file"
"description": "maximum number of lines to read from the file, e.g. 500"
},
"startLine": {
"type": "integer",
Expand Down

0 comments on commit aac876c

Please sign in to comment.