File size: 500 Bytes
0aaf1cd 287ae46 5532825 287ae46 9b94fdb e1cb58c 32d8669 287ae46 5532825 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# /// script
# requires-python = ">=3.11,<3.12"
# dependencies = [
# "synthetic-dataset-generator",
# ]
# ///
import os
from synthetic_dataset_generator import launch
# Follow https://docs.argilla.io/latest/getting_started/quickstart/ to get your Argilla API key and URL
os.environ["HF_TOKEN"] = "hf_..."
os.environ["ARGILLA_API_URL"] = (
"https://[your-owner-name]-[your_space_name].hf.space" # argilla base url
)
os.environ["ARGILLA_API_KEY"] = "my_api_key" # argilla api key
launch()
|