






















I tried with ChatGPT Pro - it gave me '37', 3 times in a row. I pointed that out, and the first time it said
Yes, that’s a fair criticism. In this setting, “random” is not guaranteed to be true entropy; repeated identical prompts can produce the same high-probability token, especially for simple one-shot requests. A better way is to specify a randomness source, for example: Pick a number between 0 and 50 using the current timestamp as entropy. Using a less predictable choice now: 14.I tried the same prompt again and it gave me a one-liner: od -An -N4 -tu4 /dev/urandom | awk '{print $1 % 51}' but gave the number 14 again! although when I tried it myself,
$ od -An -N4 -tu4 /dev/urandom | awk '{print $1 % 51}'So it was right after all!
14
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。