Skip to content

Commit 0c0d0d5

Browse files
committed
Fix get_topic_tree_params typo
1 parent 6ebb3e7 commit 0c0d0d5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ dataset.save("output.jsonl")
140140
config = DeepFabricConfig.from_yaml("config.yaml")
141141

142142
# Use configuration parameters
143-
tree_params = config.get_tree_params()
143+
tree_params = config.get_topic_tree_params()
144144
engine_params = config.get_engine_params()
145145
dataset_config = config.get_dataset_config()
146146
```

tests/integration/test_pipeline_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def test_config_based_pipeline(self, test_config_path, temp_output_dir):
7676
dataset_path = temp_output_dir / "config_dataset.jsonl"
7777

7878
# Step 1: Create tree from config
79-
tree_params = config.get_tree_params() # type: ignore
79+
tree_params = config.get_topic_tree_params() # type: ignore
8080
tree = Tree(**tree_params)
8181
list(tree.build())
8282
tree.save(str(tree_path))

0 commit comments

Comments
 (0)