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.8.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.8.0rc1.tar.gz | 150.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| data_designer_config-0.8.0rc1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 279.5 kB
Release files / data_designer_config-0.8.0rc1.tar.gz
| Download URL | data_designer_config-0.8.0rc1.tar.gz |
|---|---|
| Size | 150.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
19a81279efd2f8078b6db6e8ae557d2517da938ee6f2664b3ead522876fe2013
|
|
BLAKE2b-256 checksum How to use checksums |
b25749508f89ab4624d9633b84ebc9ba9652445f73a91dc53314b67813b7a3c3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.11.9
|
Release files / data_designer_config-0.8.0rc1-py3-none-any.whl
| Download URL | data_designer_config-0.8.0rc1-py3-none-any.whl |
|---|---|
| Size | 128.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
7063c3a39c0ee9654aac741a421762ade1a58c0027442be79746480276d1df5e
|
|
BLAKE2b-256 checksum How to use checksums |
324f97f44651f9fb2ebb0a1768b6c852f0ce6de6d396e4e12bfc3e1201c64d9c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.11.9
|