From 382eb253982cc82fdb5fba4eed578b67c2505cf0 Mon Sep 17 00:00:00 2001 From: Alexey Rybak <50731695+reluctantfuturist@users.noreply.github.com> Date: Thu, 2 Oct 2025 01:43:49 -0700 Subject: [PATCH] docs: fix more broken links (#3649) # What does this PR do? * Fixes some more documentation links ## Test Plan * Manual testing --- CONTRIBUTING.md | 6 +++--- README.md | 4 ++-- docs/docs/index.mdx | 4 ++-- pyproject.toml | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index da0ba5717..f64b8298b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -61,7 +61,7 @@ Before pushing your changes, make sure that the pre-commit hooks have passed suc We actively welcome your pull requests. However, please read the following. This is heavily inspired by [Ghostty](https://github.com/ghostty-org/ghostty/blob/main/CONTRIBUTING.md). -If in doubt, please open a [discussion](https://github.com/meta-llama/llama-stack/discussions); we can always convert that to an issue later. +If in doubt, please open a [discussion](https://github.com/llamastack/llama-stack/discussions); we can always convert that to an issue later. ### Issues We use GitHub issues to track public bugs. Please ensure your description is @@ -165,8 +165,8 @@ Building a stack image will use the production version of the `llama-stack` and Example: ```bash cd work/ -git clone https://github.com/meta-llama/llama-stack.git -git clone https://github.com/meta-llama/llama-stack-client-python.git +git clone https://github.com/llamastack/llama-stack.git +git clone https://github.com/llamastack/llama-stack-client-python.git cd llama-stack LLAMA_STACK_DIR=$(pwd) LLAMA_STACK_CLIENT_DIR=../llama-stack-client-python llama stack build --distro <...> ``` diff --git a/README.md b/README.md index ac4664266..e9b66cf8f 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ By reducing friction and complexity, Llama Stack empowers developers to focus on ### API Providers Here is a list of the various API providers and available distributions that can help developers get started easily with Llama Stack. -Please checkout for [full list](https://llamastack.github.io/providers/index.html) +Please checkout for [full list](https://llamastack.github.io/docs/providers) | API Provider Builder | Environments | Agents | Inference | VectorIO | Safety | Telemetry | Post Training | Eval | DatasetIO | |:--------------------:|:------------:|:------:|:---------:|:--------:|:------:|:---------:|:-------------:|:----:|:--------:| @@ -151,7 +151,7 @@ Please checkout for [full list](https://llamastack.github.io/providers/index.htm | NVIDIA NEMO | Hosted | | ✅ | ✅ | | | ✅ | ✅ | ✅ | | NVIDIA | Hosted | | | | | | ✅ | ✅ | ✅ | -> **Note**: Additional providers are available through external packages. See [External Providers](https://llamastack.github.io/providers/external/index.html) documentation. +> **Note**: Additional providers are available through external packages. See [External Providers](https://llamastack.github.io/docs/providers/external) documentation. ### Distributions diff --git a/docs/docs/index.mdx b/docs/docs/index.mdx index 7bfd0b408..80b288872 100644 --- a/docs/docs/index.mdx +++ b/docs/docs/index.mdx @@ -14,13 +14,13 @@ Llama Stack is the open-source framework for building generative AI applications :::tip Llama 4 is here! -Check out [Getting Started with Llama 4](https://colab.research.google.com/github/meta-llama/llama-stack/blob/main/docs/getting_started_llama4.ipynb) +Check out [Getting Started with Llama 4](https://colab.research.google.com/github/llamastack/llama-stack/blob/main/docs/getting_started_llama4.ipynb) ::: :::tip News -Llama Stack is now available! See the [release notes](https://github.com/meta-llama/llama-stack/releases) for more details. +Llama Stack is now available! See the [release notes](https://github.com/llamastack/llama-stack/releases) for more details. ::: diff --git a/pyproject.toml b/pyproject.toml index 98bae47c5..8a162e90a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -147,7 +147,7 @@ benchmark = [ ] [project.urls] -Homepage = "https://github.com/meta-llama/llama-stack" +Homepage = "https://github.com/llamastack/llama-stack" [project.scripts] llama = "llama_stack.cli.llama:main"