synthetic-data-generator-new / examples /hf-serverless-deployment.py
arthrod's picture
Merge remote-tracking branch 'origin/main'
253193c
raw
history blame contribute delete
423 Bytes
# /// script
# requires-python = ">=3.11,<3.12"
# dependencies = [
# "synthetic-dataset-generator",
# ]
# ///
import os
from src.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 model for generation
os.environ["MAGPIE_PRE_QUERY_TEMPLATE"] = "llama3" # use the template for the model
launch()