diff --git a/openai/cli.py b/openai/cli.py index e9201b18b9..91daa1c5ff 100644 --- a/openai/cli.py +++ b/openai/cli.py @@ -126,7 +126,7 @@ def create(cls, args): messages=messages, # Optional n=args.n, - max_tokens=100, + max_tokens=args.max_tokens, temperature=args.temperature, top_p=args.top_p, stop=args.stop,