File size: 410 Bytes
4949db9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | """Disabled human-eval prompt-set generator for the anonymous release.
The original generator writes prompt-selection JSON artifacts that are not part
of this code release.
"""
def main(argv=None):
raise RuntimeError(
"gen_humaneval_set is not included in this release because it writes "
"prompt-selection JSON artifacts that are omitted."
)
if __name__ == "__main__":
main()
|