File size: 291 Bytes
515cb6c 2079b17 5532825 2079b17 d987e13 2079b17 5532825 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# /// script
# requires-python = ">=3.11,<3.12"
# dependencies = [
# "synthetic-dataset-generator",
# ]
# ///
import os
from synthetic_dataset_generator import launch
os.environ["MAGPIE_PRE_QUERY_TEMPLATE"] = "my_custom_template"
os.environ["MODEL"] = "google/gemma-2-9b-it"
launch()
|