Skip to content

Commit

Permalink
chore(cli): fix typo in completions (#985)
Browse files Browse the repository at this point in the history
  • Loading branch information
logankilpatrick committed Dec 18, 2023
1 parent 89b9cd9 commit f1d3a9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/openai/cli/_api/completions.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def register(subparser: _SubParsersAction[ArgumentParser]) -> None:
)
sub.add_argument(
"--logprobs",
help="Include the log probabilites on the `logprobs` most likely tokens, as well the chosen tokens. So for example, if `logprobs` is 10, the API will return a list of the 10 most likely tokens. If `logprobs` is 0, only the chosen tokens will have logprobs returned.",
help="Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. So for example, if `logprobs` is 10, the API will return a list of the 10 most likely tokens. If `logprobs` is 0, only the chosen tokens will have logprobs returned.",
type=int,
)
sub.add_argument(
Expand Down

0 comments on commit f1d3a9a

Please sign in to comment.