Skip to content

Commit c021d09

Browse files
authored
chore(repo): update github organization namespace (#647)
This commit systematically updates all occurrences of the previous GitHub organization `always-further` to `nolabs-ai` across the codebase. Changes include: - Repository URLs in documentation, README, and contributing guidelines. - Docker image paths for the `tools-sdk` in CI workflows, documentation, and notebooks. - Links in the CLI output. - `mkdocs.yml` repository configuration. Signed-off-by: Luke Hinds <lukehinds@gmail.com>
1 parent 12622bc commit c021d09

14 files changed

Lines changed: 38 additions & 38 deletions

File tree

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
services:
2323
spin:
24-
image: ghcr.io/always-further/deepfabric/tools-sdk:latest
24+
image: ghcr.io/nolabs-ai/deepfabric/tools-sdk:latest
2525
ports:
2626
- 3000:3000
2727

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
## Contributing
22

3-
Thank you for considering contributing to [deepfabric](https://github.com/always-further/deepfabric)!
3+
Thank you for considering contributing to [deepfabric](https://github.com/nolabs-ai/deepfabric)!
44

5-
When contributing, please first discuss the change you wish to make via [issue](https://github.com/always-further/deepfabric/issues), [email](mailto:hello@alwaysfurther.ai), or any other method with the owners of this repository before making a change.
5+
When contributing, please first discuss the change you wish to make via [issue](https://github.com/nolabs-ai/deepfabric/issues), [email](mailto:hello@alwaysfurther.ai), or any other method with the owners of this repository before making a change.
66

77
Note that we have a [Code of Conduct](./CODE_OF_CONDUCT.md), please follow it in all your interactions with the project.
88

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<!-- CTA Buttons -->
99
<p>
10-
<a href="https://github.com/always-further/deepfabric/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22">
10+
<a href="https://github.com/nolabs-ai/deepfabric/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22">
1111
<img src="https://img.shields.io/badge/Contribute-Good%20First%20Issues-green?style=for-the-badge&logo=github" alt="Good First Issues"/>
1212
</a>
1313
&nbsp;
@@ -21,8 +21,8 @@
2121
<a href="https://opensource.org/licenses/Apache-2.0">
2222
<img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg" alt="License"/>
2323
</a>
24-
<a href="https://github.com/always-further/deepfabric/actions/workflows/test.yml">
25-
<img src="https://github.com/always-further/deepfabric/actions/workflows/test.yml/badge.svg" alt="CI Status"/>
24+
<a href="https://github.com/nolabs-ai/deepfabric/actions/workflows/test.yml">
25+
<img src="https://github.com/nolabs-ai/deepfabric/actions/workflows/test.yml/badge.svg" alt="CI Status"/>
2626
</a>
2727
<a href="https://pypi.org/project/deepfabric/">
2828
<img src="https://img.shields.io/pypi/v/deepfabric.svg" alt="PyPI Version"/>
@@ -84,7 +84,7 @@ DeepFabric also uses YAML configuration with three main sections and optional sh
8484
> [!NOTE]
8585
> The following uses mocked tool execution, so will require a runing Spin service, which we provide in a docker image:
8686
```bash
87-
docker run -d -p 3000:3000 ghcr.io/always-further/deepfabric/tools-sdk:latest`
87+
docker run -d -p 3000:3000 ghcr.io/nolabs-ai/deepfabric/tools-sdk:latest`
8888
```
8989

9090
Save the following as `config.yaml`:
@@ -537,16 +537,16 @@ You can extend DeepFabric with custom tools written in Python, JavaScript, Go, o
537537
538538
## Resources
539539
540-
- [Documentation](https://always-further.github.io/deepfabric/)
540+
- [Documentation](https://nolabs-ai.github.io/deepfabric/)
541541
- [Examples](./examples/README.md)
542542
- [Tool Tracing Guide](./tool-traces.md)
543543
- [Discord](https://discord.gg/pPcjYzGvbS)
544-
- [Issues](https://github.com/always-further/deepfabric/issues)
544+
- [Issues](https://github.com/nolabs-ai/deepfabric/issues)
545545
546546
## Development
547547
548548
```bash
549-
git clone https://github.com/always-further/deepfabric
549+
git clone https://github.com/nolabs-ai/deepfabric
550550
cd deepfabric
551551
uv sync --all-extras
552552
make test

deepfabric/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1493,7 +1493,7 @@ def info() -> None:
14931493
tui.console.print(f" [yellow]{var}[/yellow] - {desc}")
14941494

14951495
tui.console.print(
1496-
"\nFor more information, visit: [link]https://github.com/always-further/deepfabric[/link]"
1496+
"\nFor more information, visit: [link]https://github.com/nolabs-ai/deepfabric[/link]"
14971497
)
14981498

14991499
except Exception as e:

docs/dataset-generation/agent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Agent datasets train models to use tools. DeepFabric uses single-turn agent mode
66
Agent datasets require the Spin tool service. See [Tools](../tools/index.md) for setup, or just use Docker:
77

88
```bash
9-
docker run -d -p 3000:3000 ghcr.io/always-further/deepfabric/tools-sdk:latest
9+
docker run -d -p 3000:3000 ghcr.io/nolabs-ai/deepfabric/tools-sdk:latest
1010
```
1111

1212
## When to Use

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ hide:
1717
<h3>Focused Training for more Grounded and Efficient Models</h3>
1818

1919
<p>
20-
<a href="https://github.com/always-further/deepfabric/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22">
20+
<a href="https://github.com/nolabs-ai/deepfabric/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22">
2121
<img src="https://img.shields.io/badge/Contribute-Good%20First%20Issues-green?style=for-the-badge&logo=github" alt="Good First Issues"/>
2222
</a>
2323
&nbsp;
@@ -76,7 +76,7 @@ If you plan to use the training or evaluation utilities described in the [Traini
7676
=== "Development"
7777

7878
```bash
79-
git clone https://github.com/always-further/deepfabric.git
79+
git clone https://github.com/nolabs-ai/deepfabric.git
8080
cd deepfabric
8181
uv sync --all-extras
8282
```

docs/tools/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Components are WebAssembly modules that handle specific tool categories:
6565
We provide a prepacked Docker image:
6666

6767
```bash
68-
docker run -d -p 3000:3000 ghcr.io/always-further/deepfabric/tools-sdk:latest
68+
docker run -d -p 3000:3000 ghcr.io/nolabs-ai/deepfabric/tools-sdk:latest
6969
```
7070

7171
This will now be accessible at `http://localhost:3000`.

docs/tools/mock.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The workflow has two phases:
3636
### 1. Start Spin
3737

3838
```bash
39-
docker run -d -p 3000:3000 ghcr.io/always-further/deepfabric/tools-sdk:latest
39+
docker run -d -p 3000:3000 ghcr.io/nolabs-ai/deepfabric/tools-sdk:latest
4040
```
4141

4242
### 2. Import Tools from MCP Server
@@ -356,8 +356,8 @@ done
356356
!!! example "Complete Examples"
357357
See working examples in the repository:
358358

359-
- [`examples/tools-sdk-examples/github/`](https://github.com/always-further/deepfabric/tree/main/examples/tools-sdk-examples/github) - GitHub tools with mock data
360-
- [`examples/tools-sdk-examples/kubernetes/`](https://github.com/always-further/deepfabric/tree/main/examples/tools-sdk-examples/kubernetes) - Kubernetes tools with fixtures
359+
- [`examples/tools-sdk-examples/github/`](https://github.com/nolabs-ai/deepfabric/tree/main/examples/tools-sdk-examples/github) - GitHub tools with mock data
360+
- [`examples/tools-sdk-examples/kubernetes/`](https://github.com/nolabs-ai/deepfabric/tree/main/examples/tools-sdk-examples/kubernetes) - Kubernetes tools with fixtures
361361

362362
## API Reference
363363

docs/tools/spin.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ There are two ways to run the Spin service:
1616
The fastest way to get started. No installation required:
1717

1818
```bash
19-
docker run -d -p 3000:3000 ghcr.io/always-further/deepfabric/tools-sdk:latest
19+
docker run -d -p 3000:3000 ghcr.io/nolabs-ai/deepfabric/tools-sdk:latest
2020
```
2121

2222
With a custom port:
2323

2424
```bash
25-
docker run -d -p 8080:3000 ghcr.io/always-further/deepfabric/tools-sdk:latest
25+
docker run -d -p 8080:3000 ghcr.io/nolabs-ai/deepfabric/tools-sdk:latest
2626
```
2727

2828
Verify it's running:

docs/tools/vfs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The Virtual Filesystem (VFS) component provides file operations in an isolated,
1212
| `delete_file` | Delete a file | `file_path` (string) |
1313

1414
!!! tip "Need another builtin tool?"
15-
If you need a generic tool that would see wide use, [open an issue](https://github.com/always-further/deepfabric/issues) to request it.
15+
If you need a generic tool that would see wide use, [open an issue](https://github.com/nolabs-ai/deepfabric/issues) to request it.
1616

1717
## Configuration
1818

0 commit comments

Comments
 (0)