phyground-code / evals /human_eval /supplement_laws.py
anonymouscla's picture
Initial anonymous release: phyground-code
4949db9 verified
raw
history blame contribute delete
401 Bytes
#!/usr/bin/env python3
"""Disabled supplement script for the anonymous release.
The original supplement flow depends on the prompt-selection JSON, which is not
included in this release.
"""
def main():
raise RuntimeError(
"supplement_laws is not included in this release because it depends on "
"the omitted prompt-selection JSON."
)
if __name__ == "__main__":
main()