Closed jaywonchung closed 10 months ago
No, this is currently not supported. It's not really something I've thought too much about, since you can quite easily do a default when getting the value:
const temp = args.args.temperature orelse 0.9;
Oh I see! That's good enough for me as well. Thanks.
If there a specific syntax to specify custom default values for arguments? For instance, I want
-t, --temperature
to be0.9
if the user never specifies that option on the command line. Thanks a lot.