Skip to content
2 changes: 1 addition & 1 deletion src/data_designer/config/utils/visualization.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def display_sample_record(
display_sample_record(
record=record,
processor_data_to_display=processor_data_to_display,
config_builder=self._config_builder,
config_builder=self.config_builder,
background_color=background_color,
syntax_highlighting_theme=syntax_highlighting_theme,
hide_seed_columns=hide_seed_columns,
Expand Down
8 changes: 8 additions & 0 deletions src/data_designer/integrations/huggingface/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

from data_designer.integrations.huggingface.client import HuggingFaceHubClient, resolve_hf_token
from data_designer.integrations.huggingface.hub_results import HubDatasetResults
from data_designer.integrations.huggingface.reconstruction import reconstruct_dataset_creation_results

__all__ = ["HuggingFaceHubClient", "HubDatasetResults", "resolve_hf_token", "reconstruct_dataset_creation_results"]
Loading