Skip to content

Commit 09b68b0

Browse files
authored
fix: fix repo links (#1)
Signed-off-by: ayushag <ayushag@nvidia.com>
1 parent 86020fa commit 09b68b0

8 files changed

Lines changed: 13 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,3 @@ traffic that sits between client applications and LLM backends.
5555
`claude` / `codex` / `openclaw` launchers.
5656
- Inference Hub integration docs are out of scope for this release.
5757

58-
[0.1.0]: https://github.com/NVIDIA-dev/switchyard/releases/tag/v0.1.0

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ See [Development](DEVELOPMENT.md) for full setup instructions.
99
Quick start:
1010

1111
```bash
12-
git clone https://github.com/NVIDIA-dev/switchyard.git
12+
git clone https://github.com/NVIDIA-NeMo/Switchyard.git
1313
cd switchyard
1414
uv sync
1515
uvx pre-commit install --install-hooks --hook-type pre-commit --hook-type commit-msg
@@ -162,7 +162,7 @@ When adding a new component:
162162
- **Setup issues?** See [Development](DEVELOPMENT.md)
163163
- **Architecture questions?** See [Agents](AGENTS.md)
164164
- **Design docs?** See [docs/](docs/)
165-
- **Report a bug?** [Open an issue](https://github.com/NVIDIA-dev/switchyard/issues)
165+
- **Report a bug?** [Open an issue](https://github.com/NVIDIA-NeMo/Switchyard/issues)
166166

167167
## Code of Conduct
168168

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ members = [
1717
authors = ["NVIDIA Corporation"]
1818
edition = "2021"
1919
license = "Apache-2.0"
20-
repository = "https://github.com/NVIDIA-dev/switchyard"
20+
repository = "https://github.com/NVIDIA-NeMo/Switchyard"
2121
rust-version = "1.94"

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ and dependencies. Install `uv` first if you don't have it
1414
(`curl -LsSf https://astral.sh/uv/install.sh | sh`), then:
1515

1616
```bash
17-
git clone https://github.com/NVIDIA-dev/switchyard.git
17+
git clone https://github.com/NVIDIA-NeMo/Switchyard.git
1818
cd switchyard
1919

2020
uv sync # creates .venv, installs core + dev tooling

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ pip install "switchyard[cli,server]"
3030
### Install from source for local use (requires uv)
3131

3232
```bash
33-
git clone git@github.com:NVIDIA-dev/switchyard.git
33+
git clone git@github.com:NVIDIA-NeMo/Switchyard.git
3434
cd switchyard
3535
uv tool install --editable '.[server,cli]'
3636
```
3737

3838
### Install from source for contributors (requires uv)
3939

4040
```bash
41-
git clone git@github.com:NVIDIA-dev/switchyard.git
41+
git clone git@github.com:NVIDIA-NeMo/Switchyard.git
4242
cd switchyard
4343
uv sync
4444
uv run switchyard ...
@@ -226,7 +226,7 @@ See [Installation](INSTALLATION.md) for a full breakdown of what each extra adds
226226

227227
## Community
228228

229-
- **Issues**: [GitHub Issues](https://github.com/NVIDIA-dev/switchyard/issues)
229+
- **Issues**: [GitHub Issues](https://github.com/NVIDIA-NeMo/Switchyard/issues)
230230
- **Code of Conduct**: [Code of Conduct](CODE_OF_CONDUCT.md)
231231
- **Contributing**: [Contributing](CONTRIBUTING.md)
232232

docs/getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ export SWITCHYARD_TELEMETRY_OPT_OUT=1
213213
**Development setup**
214214
215215
```bash
216-
git clone https://github.com/NVIDIA-dev/switchyard.git
216+
git clone https://github.com/NVIDIA-NeMo/Switchyard.git
217217
cd switchyard
218218
uv sync
219219
source .venv/bin/activate

mkdocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
site_name: Switchyard
22
site_description: Typed, composable LLM routing and format translation for Python
3-
repo_url: https://github.com/NVIDIA-dev/switchyard
4-
repo_name: NVIDIA-dev/switchyard
3+
repo_url: https://github.com/NVIDIA-NeMo/Switchyard
4+
repo_name: NVIDIA-NeMo/Switchyard
55
edit_uri: edit/main/docs/
66
extra:
77
source_ref: !ENV [MKDOCS_SOURCE_REF, main]

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,9 @@ managed = true
129129
switchyard = "switchyard.cli.switchyard_cli:main"
130130

131131
[project.urls]
132-
Homepage = "https://github.com/NVIDIA-dev/switchyard"
133-
Repository = "https://github.com/NVIDIA-dev/switchyard"
134-
Issues = "https://github.com/NVIDIA-dev/switchyard/issues"
132+
Homepage = "https://github.com/NVIDIA-NeMo/Switchyard"
133+
Repository = "https://github.com/NVIDIA-NeMo/Switchyard"
134+
Issues = "https://github.com/NVIDIA-NeMo/Switchyard/issues"
135135

136136
[tool.setuptools.packages.find]
137137
where = ["."]

0 commit comments

Comments
 (0)