mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-27 16:10:30 +08:00
8 lines
179 B
Python
8 lines
179 B
Python
import typer
|
|
|
|
def main(output_dir: str = "data"):
|
|
"""Download and prepare the dataset for use."""
|
|
raise NotImplementedError
|
|
|
|
if __name__ == "__main__":
|
|
typer.run(main) |