Skip to content

Commit

Permalink
Changing the default model to gpt-3.5-turbo-instruct because the mode…
Browse files Browse the repository at this point in the history
…l text-davinci-003 has been deprecated, learn more here: https://platform.openai.com/docs/deprecations. Changing the default Max tokens to 1000 to minimize truncated responses.
  • Loading branch information
jhonesto committed Jan 9, 2024
1 parent 2f221c2 commit 801119c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions igpt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

# DEFAULT VALUES
TOKEN=${TOKEN:-""}
MODEL=${MODEL:-"text-davinci-003"}
MAX_TOKENS=${MAX_TOKENS:-"500"}
MODEL=${MODEL:-"gpt-3.5-turbo-instruct"}
MAX_TOKENS=${MAX_TOKENS:-"1000"}
TEMPERATURE=${TEMPERATURE:-"1.0"}

#COLORS
Expand Down

0 comments on commit 801119c

Please sign in to comment.