Pre-release
This release is a pre-release and may not be stable for production use.
data-designer-config
Configuration layer for NeMo Data Designer synthetic data generation framework.
This package provides the configuration API for defining synthetic data generation pipelines. It's a lightweight dependency that can be used standalone for configuration management.
Installation
pip install data-designer-config
Usage
import data_designer.config as dd
# Initialize config builder with model config(s)
config_builder = dd.DataDesignerConfigBuilder(
model_configs=[
dd.ModelConfig(
alias="my-model",
model="nvidia/nemotron-3-nano-30b-a3b",
provider="nvidia",
inference_parameters=dd.ChatCompletionInferenceParams(temperature=0.7),
),
]
)
# Add columns
config_builder.add_column(
dd.SamplerColumnConfig(
name="user_id",
sampler_type=dd.SamplerType.UUID,
params=dd.UUIDSamplerParams(prefix="user-"),
)
)
config_builder.add_column(
dd.LLMTextColumnConfig(
name="description",
prompt="Write a product description",
model_alias="my-model",
)
)
# Build configuration
config = config_builder.build()
See main README.md for more information.
Release files for data-designer-config 0.9.0rc1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| data_designer_config-0.9.0rc1.tar.gz | 151.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| data_designer_config-0.9.0rc1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 279.5 kB
Release files / data_designer_config-0.9.0rc1.tar.gz
| Download URL | data_designer_config-0.9.0rc1.tar.gz |
|---|---|
| Size | 151.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
f50120ce3457848492337151fae7c42d7f3bef22a277656e717595a10cb043c0
|
|
BLAKE2b-256 checksum How to use checksums |
4001b467553c6580b7a7b44d52dac09bd3bf037a8392ad14eca8a2460e0d780c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.3
|
Release files / data_designer_config-0.9.0rc1-py3-none-any.whl
| Download URL | data_designer_config-0.9.0rc1-py3-none-any.whl |
|---|---|
| Size | 128.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c5f1b79840e814512236d34187602ff2703ab786441a5a7345bc3f3fc5bc1a0f
|
|
BLAKE2b-256 checksum How to use checksums |
0dbfe9eac9e176f904f29105c8571995083b047945bfe5320f8754135c3db109
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.3
|