Skip to content

Commit 8e30802

Browse files
authored
docs: move models docs to concepts > models (#93)
1 parent 60a8981 commit 8e30802

File tree

13 files changed

+20
-21
lines changed

13 files changed

+20
-21
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ preview.display_sample_record()
9999
- **[Tutorial Notebooks](https://nvidia-nemo.github.io/DataDesigner/notebooks/)** – Step-by-step interactive tutorials
100100
- **[Column Types](https://nvidia-nemo.github.io/DataDesigner/concepts/columns/)** – Explore samplers, LLM columns, validators, and more
101101
- **[Validators](https://nvidia-nemo.github.io/DataDesigner/concepts/validators/)** – Learn how to validate generated data with Python, SQL, and remote validators
102-
- **[Model Configuration](https://nvidia-nemo.github.io/DataDesigner/models/model-configs/)** – Configure custom models and providers
102+
- **[Model Configuration](https://nvidia-nemo.github.io/DataDesigner/concepts/models/model-configs/)** – Configure custom models and providers
103103
- **[Person Sampling](https://nvidia-nemo.github.io/DataDesigner/concepts/person_sampling/)** – Learn how to sample realistic person data with demographic attributes
104104

105105
### 🔧 Configure models via CLI

docs/models/configure-model-settings-with-the-cli.md renamed to docs/concepts/models/configure-model-settings-with-the-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,4 @@ The CLI will show which configuration files exist and ask for confirmation befor
132132
- **[Model Providers](model-providers.md)**: Learn about the `ModelProvider` class and provider configuration
133133
- **[Model Configurations](model-configs.md)**: Learn about `ModelConfig` and `InferenceParameters`
134134
- **[Default Model Settings](default-model-settings.md)**: Pre-configured providers and model settings included with Data Designer
135-
- **[Quick Start Guide](../quick-start.md)**: Get started with a simple example
135+
- **[Quick Start Guide](../../quick-start.md)**: Get started with a simple example

docs/models/default-model-settings.md renamed to docs/concepts/models/default-model-settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,5 +91,5 @@ Both methods operate on the same files, ensuring consistency across your entire
9191
## See Also
9292

9393
- **[Configure Model Settings With the CLI](configure-model-settings-with-the-cli.md)**: Learn how to use the CLI to manage model settings.
94-
- **[Quick Start Guide](../quick-start.md)**: Get started with a simple example
94+
- **[Quick Start Guide](../../quick-start.md)**: Get started with a simple example
9595
- **[Model Configurations](model-configs.md)**: Learn about model configurations
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,4 +241,4 @@ model_config = ModelConfig(
241241
- **[Model Providers](model-providers.md)**: Learn about configuring model providers
242242
- **[Default Model Settings](default-model-settings.md)**: Pre-configured model settings included with Data Designer
243243
- **[Configure Model Settings With the CLI](configure-model-settings-with-the-cli.md)**: Use the CLI to manage model settings
244-
- **[Column Configurations](../code_reference/column_configs.md)**: Learn how to use models in column configurations
244+
- **[Column Configurations](../../code_reference/column_configs.md)**: Learn how to use models in column configurations
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ provider = ModelProvider(
4747
- **[Model Configurations](model-configs.md)**: Learn about configuring models and inference parameters
4848
- **[Default Model Settings](default-model-settings.md)**: Pre-configured providers and model settings included with Data Designer
4949
- **[Configure Model Settings With the CLI](configure-model-settings-with-the-cli.md)**: Use the CLI to manage providers and model settings
50-
- **[Quick Start Guide](../quick-start.md)**: Get started with a simple example
50+
- **[Quick Start Guide](../../quick-start.md)**: Get started with a simple example

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Data Designer helps you create datasets through an intuitive, **iterative** proc
2525
1. **⚙️ Configure** your model settings
2626
- Bring your own OpenAI-compatible model providers and models
2727
- Or use the default model providers and models to get started quickly
28-
- Learn more by reading the [model docs](models/default-model-settings.md)
28+
- Learn more by reading the [model docs](concepts/models/default-model-settings.md)
2929
2. **🏗️ Design** your dataset
3030
- Iteratively design your dataset, column by column
3131
- Leverage tools like statistical samplers and LLMs to generate a variety of data types

docs/notebook_source/1-the-basics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
#
4747
# - `DataDesigner` is the main object is responsible for managing the data generation process.
4848
#
49-
# - When initialized without arguments, the [default model providers](https://nvidia-nemo.github.io/DataDesigner/models/default-model-settings/) are used.
49+
# - When initialized without arguments, the [default model providers](https://nvidia-nemo.github.io/DataDesigner/concepts/models/default-model-settings/) are used.
5050
#
5151

5252
# %%
@@ -59,7 +59,7 @@
5959
#
6060
# - The "model alias" is used to reference the model in the Data Designer config (as we will see below).
6161
#
62-
# - The "model provider" is the external service that hosts the model (see the [model config](https://nvidia-nemo.github.io/DataDesigner/models/default-model-settings/) docs for more details).
62+
# - The "model provider" is the external service that hosts the model (see the [model config](https://nvidia-nemo.github.io/DataDesigner/concepts/models/default-model-settings/) docs for more details).
6363
#
6464
# - By default, we use [build.nvidia.com](https://build.nvidia.com/models) as the model provider.
6565
#

docs/notebook_source/2-structured-outputs-and-jinja-expressions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
#
4949
# - `DataDesigner` is the main object that is used to interface with the library.
5050
#
51-
# - When initialized without arguments, the [default model providers](https://nvidia-nemo.github.io/DataDesigner/models/default-model-settings/) are used.
51+
# - When initialized without arguments, the [default model providers](https://nvidia-nemo.github.io/DataDesigner/concepts/models/default-model-settings/) are used.
5252
#
5353

5454
# %%
@@ -61,7 +61,7 @@
6161
#
6262
# - The "model alias" is used to reference the model in the Data Designer config (as we will see below).
6363
#
64-
# - The "model provider" is the external service that hosts the model (see the [model config](https://nvidia-nemo.github.io/DataDesigner/models/default-model-settings/) docs for more details).
64+
# - The "model provider" is the external service that hosts the model (see the [model config](https://nvidia-nemo.github.io/DataDesigner/concepts/models/default-model-settings/) docs for more details).
6565
#
6666
# - By default, we use [build.nvidia.com](https://build.nvidia.com/models) as the model provider.
6767
#

docs/notebook_source/3-seeding-with-a-dataset.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
#
4343
# - `DataDesigner` is the main object is responsible for managing the data generation process.
4444
#
45-
# - When initialized without arguments, the [default model providers](https://nvidia-nemo.github.io/DataDesigner/models/default-model-settings/) are used.
45+
# - When initialized without arguments, the [default model providers](https://nvidia-nemo.github.io/DataDesigner/concepts/models/default-model-settings/) are used.
4646
#
4747

4848
# %%
@@ -55,7 +55,7 @@
5555
#
5656
# - The "model alias" is used to reference the model in the Data Designer config (as we will see below).
5757
#
58-
# - The "model provider" is the external service that hosts the model (see the [model config](https://nvidia-nemo.github.io/DataDesigner/models/default-model-settings/) docs for more details).
58+
# - The "model provider" is the external service that hosts the model (see the [model config](https://nvidia-nemo.github.io/DataDesigner/concepts/models/default-model-settings/) docs for more details).
5959
#
6060
# - By default, we use [build.nvidia.com](https://build.nvidia.com/models) as the model provider.
6161
#

docs/notebook_source/_README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export NVIDIA_API_KEY="your-api-key-here"
4848
export OPENAI_API_KEY="your-api-key-here"
4949
```
5050

51-
For more information, check the [Quick Start](../quick-start.md), [Default Model Settings](../models/default-model-settings.md) and how to [Configure Model Settings Using The CLI](../models/configure-model-settings-with-the-cli.md).
51+
For more information, check the [Quick Start](../quick-start.md), [Default Model Settings](../concepts/models/default-model-settings.md) and how to [Configure Model Settings Using The CLI](../concepts/models/configure-model-settings-with-the-cli.md).
5252

5353
## 📚 Tutorial Series
5454

0 commit comments

Comments
 (0)