File size: 341 Bytes
636588b
 
 
5532825
636588b
e1cb58c
f5ab4cb
 
636588b
5532825
1
2
3
4
5
6
7
8
9
10
11
# pip install synthetic-dataset-generator
import os

from synthetic_dataset_generator import launch

os.environ["HF_TOKEN"] = "hf_..."  # push the data to huggingface
os.environ["MODEL"] = "meta-llama/Llama-3.1-8B-Instruct"  # use instruct model
os.environ["MAGPIE_PRE_QUERY_TEMPLATE"] = "llama3"  # use the template for the model

launch()