For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • Getting Started
    • Welcome
    • Contributing
  • Concepts
    • Columns
    • Seed Datasets
    • Agent Rollout Ingestion
    • Custom Columns
    • Validators
    • Processors
    • Person Sampling
    • Traces
    • Architecture & Performance
    • Deployment Options
    • Security
  • Tutorials
    • Overview
    • The Basics
    • Structured Outputs, Jinja Expressions, and Conditional Generation
    • Seeding with an External Dataset
    • Providing Images as Context
    • Generating Images
    • Image-to-Image Editing
  • Recipes
    • Recipe Cards
  • Plugins
    • Overview
    • Example Plugin
    • FileSystemSeedReader Plugins
    • Discover
  • Code Reference
    • Overview
      • Overview
      • data_designer
      • results
      • errors
      • Interface API
        • Data Designer
        • Errors
        • Results
  • Dev Notes
    • Overview
    • Prompt Sensitivity
    • Retriever SDG Toolkit
    • Have It Your Way
    • VLM Long Document Understanding
    • Push Datasets to Hugging Face Hub
    • Text-to-SQL for Nemotron Super
    • Async All the Way Down
    • Owning the Model Stack
NVIDIANVIDIA
Developer-friendly docs for your API
Privacy Policy | Manage My Privacy | Do Not Sell or Share My Data | Terms of Service | Accessibility | Corporate Policies | Product Security | Contact

Copyright © 2026, NVIDIA Corporation.

LogoLogoNeMo Data Designer
On this page
  • API
Code ReferenceInterfaceInterface API

data_designer.interface.errors

||View as Markdown|
Previous

Data Designer

Next

Results

API

1class data_designer.interface.errors.DataDesignerProfilingError

Bases: data_designer.errors.DataDesignerError

Raised for errors related to a Data Designer dataset profiling.

Initialization:

Initialize self. See help(type(self)) for accurate signature.

1class data_designer.interface.errors.DataDesignerGenerationError

Bases: data_designer.errors.DataDesignerError

Raised for errors related to a Data Designer dataset generation.

Initialization:

Initialize self. See help(type(self)) for accurate signature.

1class data_designer.interface.errors.DataDesignerEarlyShutdownError

Bases: data_designer.interface.errors.DataDesignerGenerationError

Raised when a run terminated via early shutdown and produced no records.

Subclass of DataDesignerGenerationError so existing handlers still catch it; callers that want to distinguish the early-shutdown case (e.g. to retry with a different model alias or surface a degraded-provider message to the user) can catch this specific type.

Initialization:

Initialize self. See help(type(self)) for accurate signature.

1class data_designer.interface.errors.InvalidBufferValueError

Bases: data_designer.errors.DataDesignerError

Raised for errors related to an invalid buffer value.

Initialization:

Initialize self. See help(type(self)) for accurate signature.