Skip to content

Commit b26e631

Browse files
chore: Unify Docs Links (#841)
1 parent a1631de commit b26e631

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

src/app/stacks/create/manual/TypeOverview.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function AddComponents() {
3232
<a
3333
target="_blank"
3434
rel="noopener noreferrer"
35-
href="https://docs.zenml.io/stack-components/component-guide"
35+
href="https://docs.zenml.io/stacks#stack-components-guide"
3636
className="link text-primary-400"
3737
>
3838
Learn more

src/components/artifacts/Visualization.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export function Visualization({
7474
className="link"
7575
rel="noopener noreferrer"
7676
target="_blank"
77-
href="https://docs.zenml.io/stack-components/artifact-stores/custom"
77+
href="https://docs.zenml.io/stacks/stack-components/artifact-stores/custom"
7878
>
7979
docs
8080
</a>

src/contents/components.tsx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,73 @@
11
export const OrchestratorSection = {
2-
helpLink: "https://docs.zenml.io/stack-components/orchestrators",
2+
helpLink: "https://docs.zenml.io/stacks/stack-components/orchestrators",
33
description:
44
"An orchestrator is a special kind of backend that manages the running of each step of the pipeline. Orchestrators administer the actual pipeline runs. By default, ZenML initializes your repository with an orchestrator that runs everything on your local machine."
55
};
66

77
export const ArtifactStoreSection = {
8-
helpLink: "https://docs.zenml.io/stack-components/artifact-stores",
8+
helpLink: "https://docs.zenml.io/stacks/stack-components/artifact-stores",
99
description:
1010
"The Artifact Store is a central component in any MLOps stack. As the name suggests, it acts as a data persistence layer where artifacts (e.g. datasets, models) ingested or generated by the machine learning pipelines are stored."
1111
};
1212

1313
export const ContainerRegistrySection = {
14-
helpLink: "https://docs.zenml.io/stack-components/container-registries",
14+
helpLink: "https://docs.zenml.io/stacks/stack-components/container-registries",
1515
description:
1616
"Container registry is used to store container images that are built to run machine learning pipelines in remote environments. Containerization of the pipeline code creates a portable environment that allows code to run in an isolated manner."
1717
};
1818

1919
export const StepOperatorSection = {
2020
description:
2121
"Step operators allow you to run individual steps in a custom environment different from the default one used by your active orchestrator.",
22-
helpLink: "https://docs.zenml.io/stack-components/step-operators"
22+
helpLink: "https://docs.zenml.io/stacks/stack-components/step-operators"
2323
};
2424

2525
export const ModelDeployerSection = {
2626
description:
2727
"Model deployers are stack components responsible for online model serving. They are responsible for deploying models to a remote server. Model deployers also act as a registry for models that are served with ZenML.",
28-
helpLink: "https://docs.zenml.io/stack-components/model-deployers"
28+
helpLink: "https://docs.zenml.io/stacks/stack-components/model-deployers"
2929
};
3030

3131
export const FeatureStoreSection = {
3232
description:
3333
"ZenML supports connecting to a Redis-backed Feast feature store as a stack component integration.",
34-
helpLink: "https://docs.zenml.io/stack-components/feature-stores"
34+
helpLink: "https://docs.zenml.io/stacks/stack-components/feature-stores"
3535
};
3636

3737
export const ExperimentTrackerSection = {
3838
description:
3939
"Experiment trackers let you track your ML experiments by logging the parameters and allowing you to compare between different runs.",
40-
helpLink: "https://docs.zenml.io/stack-components/experiment-trackers"
40+
helpLink: "https://docs.zenml.io/stacks/stack-components/experiment-trackers"
4141
};
4242

4343
export const AlerterSection = {
4444
description:
4545
"Alerters allow you to send messages to chat services (like Slack, Discord, Mattermost, etc.) from within your pipelines. This is useful to immediately get notified when failures happen, for general monitoring/reporting, and also for building human-in-the-loop ML.",
46-
helpLink: "https://docs.zenml.io/stack-components/alerters "
46+
helpLink: "https://docs.zenml.io/stacks/stack-components/alerters"
4747
};
4848

4949
export const AnnotatorSection = {
5050
description:
5151
"Annotators are a stack component that enables the use of data annotation as part of your ZenML stack and pipelines.",
52-
helpLink: "https://docs.zenml.io/stack-components/annotators"
52+
helpLink: "https://docs.zenml.io/stacks/stack-components/annotators"
5353
};
5454

5555
export const DataValidatorSection = {
5656
description:
5757
"Data Validators used in ZenML pipelines usually generate data profiles and data quality check reports that are versioned and stored in the Artifact Store and can be retrieved and visualized later.",
58-
helpLink: "https://docs.zenml.io/stack-components/data-validators"
58+
helpLink: "https://docs.zenml.io/stacks/stack-components/data-validators"
5959
};
6060

6161
export const ImageBuilderSection = {
6262
description:
6363
"The image builder is an essential part of most remote MLOps stacks. It is used to build container images such that your machine-learning pipelines and steps can be executed in remote environments.",
64-
helpLink: "https://docs.zenml.io/stack-components/image-builders"
64+
helpLink: "https://docs.zenml.io/stacks/stack-components/image-builders"
6565
};
6666

6767
export const ModelRegistrySection = {
6868
description:
6969
"Model registries are centralized storage solutions for managing and tracking machine learning models across various stages of development and deployment.",
70-
helpLink: "https://docs.zenml.io/stack-components/model-registries"
70+
helpLink: "https://docs.zenml.io/stacks/stack-components/model-registries"
7171
};
7272

7373
export const DeployerSection = {

0 commit comments

Comments
 (0)