Skip to content

Commit fa91e9d

Browse files
authored
Merge branch 'main' into lm
2 parents 7fcc99b + 8eaf9e4 commit fa91e9d

74 files changed

Lines changed: 348 additions & 214 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude/commands/create-pr.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ git remote add fork https://github.com/<username>/AReaL.git
8080
**Store for later use:**
8181

8282
- `PUSH_REMOTE`: The remote to push to (e.g., `origin` or `fork`)
83-
- `UPSTREAM_REPO`: The upstream repo for PR target (e.g., `inclusionAI/AReaL`)
83+
- `UPSTREAM_REPO`: The upstream repo for PR target (e.g., `areal-project/AReaL`)
8484
- `FORK_OWNER`: Fork owner username (for `--head` parameter if needed)
8585

8686
```bash
8787
# Example detection script
88-
UPSTREAM_REPO="inclusionAI/AReaL"
88+
UPSTREAM_REPO="areal-project/AReaL"
8989
PUSH_REMOTE=""
9090

9191
# Check if we can push to origin
@@ -386,7 +386,7 @@ Files changed:
386386
387387
Commands to execute:
388388
1. git push -f -u <fork-remote> feat/vision-rlvr
389-
2. gh pr create --repo inclusionAI/AReaL --head <username>:feat/vision-rlvr --base main --title "..." --body "..." [--draft]
389+
2. gh pr create --repo areal-project/AReaL --head <username>:feat/vision-rlvr --base main --title "..." --body "..." [--draft]
390390
─────────────────────────────────────────────────
391391
```
392392
@@ -485,7 +485,7 @@ Add `--draft` flag if requested.
485485

486486
```
487487
✓ PR created/updated successfully!
488-
https://github.com/inclusionAI/AReaL/pull/123
488+
https://github.com/areal-project/AReaL/pull/123
489489
```
490490

491491
## Examples

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: 💬 GitHub Discussions
4-
url: https://github.com/inclusionAI/AReaL/discussions
4+
url: https://github.com/areal-project/AReaL/discussions
55
about: Ask questions, share ideas, or discuss features before opening an issue
66
- name: 📖 Documentation
7-
url: https://inclusionai.github.io/AReaL/
7+
url: https://areal-project.github.io/AReaL/
88
about: Check our comprehensive documentation for guides and tutorials
99
- name: 🚀 Quickstart Guide
10-
url: https://inclusionai.github.io/AReaL/en/tutorial/quickstart.html
10+
url: https://areal-project.github.io/AReaL/en/tutorial/quickstart.html
1111
about: New to AReaL? Start here for installation and basic usage
1212
- name: 🐛 Debugging Guide
13-
url: https://inclusionai.github.io/AReaL/en/best_practices/debugging.html
13+
url: https://areal-project.github.io/AReaL/en/best_practices/debugging.html
1414
about: Tips for debugging common issues
1515
- name: 💾 Handling OOM Issues
16-
url: https://inclusionai.github.io/AReaL/en/best_practices/handling_oom.html
16+
url: https://areal-project.github.io/AReaL/en/best_practices/handling_oom.html
1717
about: Solutions for out-of-memory errors
1818
- name: 💬 WeChat Community
19-
url: https://github.com/inclusionAI/AReaL/blob/main/assets/wechat_qrcode.png
19+
url: https://github.com/areal-project/AReaL/blob/main/assets/wechat_qrcode.png
2020
about: Join our WeChat group for community support (微信群)

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ Fixes #(issue)
4444
______________________________________________________________________
4545

4646
**Need help?** Check the [Contributing Guide](../CONTRIBUTING.md) or ask in
47-
[GitHub Discussions](https://github.com/inclusionAI/AReaL/discussions)!
47+
[GitHub Discussions](https://github.com/areal-project/AReaL/discussions)!

.github/workflows/bake-gcp-image.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
IMAGE_TAG=$(curl -fsSL -H "$METADATA_HEADER" "$METADATA_URL/image_tag")
8484
GHCR_TOKEN=$(curl -fsSL -H "$METADATA_HEADER" "$METADATA_URL/ghcr_token" 2>/dev/null || true)
8585
86-
IMAGE_REPO="ghcr.io/inclusionai/areal-runtime"
86+
IMAGE_REPO="ghcr.io/areal-project/areal-runtime"
8787
8888
# Wait for Docker daemon to be ready
8989
echo "Waiting for Docker daemon..."
@@ -101,7 +101,7 @@ jobs:
101101
102102
# Authenticate to GHCR if token is available
103103
if [ -n "${GHCR_TOKEN:-}" ]; then
104-
echo "$GHCR_TOKEN" | docker login ghcr.io -u inclusionai --password-stdin
104+
echo "$GHCR_TOKEN" | docker login ghcr.io -u areal-project --password-stdin
105105
echo "Authenticated to GHCR."
106106
fi
107107
@@ -274,7 +274,7 @@ jobs:
274274
|---|---|
275275
| **New Image** | \`${IMAGE_NAME}\` |
276276
| **Base Image** | \`${BASE_IMAGE}\` |
277-
| **Pre-pulled** | \`ghcr.io/inclusionai/areal-runtime:${IMAGE_TAG}-sglang\`, \`ghcr.io/inclusionai/areal-runtime:${IMAGE_TAG}-vllm\` |
277+
| **Pre-pulled** | \`ghcr.io/areal-project/areal-runtime:${IMAGE_TAG}-sglang\`, \`ghcr.io/areal-project/areal-runtime:${IMAGE_TAG}-vllm\` |
278278
279279
### Next Steps
280280
Update \`GCP_OS_IMAGE\` in \`.github/workflows/test-areal.yml\`:

.github/workflows/build-docker-image.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515
GCP_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }}
1616
VALIDATOR_LABELS: gcp-docker-validator
1717
RUNNER_VERSION: '2.332.0'
18-
IMAGE_NAME: ghcr.io/inclusionai/areal-runtime
18+
IMAGE_NAME: ghcr.io/areal-project/areal-runtime
1919
IMAGE_TAG: test
2020

2121
jobs:
@@ -129,7 +129,7 @@ jobs:
129129
uses: docker/login-action@v4
130130
with:
131131
registry: ghcr.io
132-
username: inclusionai
132+
username: areal-project
133133
password: ${{ secrets.GHCR_TOKEN }}
134134

135135
- name: Build and push sglang image
@@ -196,12 +196,12 @@ jobs:
196196
uses: docker/login-action@v4
197197
with:
198198
registry: ghcr.io
199-
username: inclusionai
199+
username: areal-project
200200
password: ${{ secrets.GHCR_TOKEN }}
201201

202202
- name: Pull test image and push as dev
203203
env:
204-
IMAGE_NAME: ghcr.io/inclusionai/areal-runtime
204+
IMAGE_NAME: ghcr.io/areal-project/areal-runtime
205205
run: |
206206
docker pull $IMAGE_NAME:test-${{ matrix.variant }}
207207
docker tag $IMAGE_NAME:test-${{ matrix.variant }} $IMAGE_NAME:dev-${{ matrix.variant }}
@@ -239,12 +239,12 @@ jobs:
239239
TAG="test-${{ matrix.variant }}"
240240
# Get the package version ID for the test tag
241241
PACKAGE_VERSION_ID=$(curl -s -H "Authorization: Bearer $GH_TOKEN" \
242-
"https://api.github.com/orgs/inclusionai/packages/container/$PACKAGE_NAME/versions?per_page=100" \
242+
"https://api.github.com/orgs/areal-project/packages/container/$PACKAGE_NAME/versions?per_page=100" \
243243
| jq -r ".[] | select(.metadata.container.tags[] == \"$TAG\") | .id")
244244
245245
if [ -n "$PACKAGE_VERSION_ID" ] && [ "$PACKAGE_VERSION_ID" != "null" ]; then
246246
curl -X DELETE -H "Authorization: Bearer $GH_TOKEN" \
247-
"https://api.github.com/orgs/inclusionai/packages/container/$PACKAGE_NAME/versions/$PACKAGE_VERSION_ID"
247+
"https://api.github.com/orgs/areal-project/packages/container/$PACKAGE_NAME/versions/$PACKAGE_VERSION_ID"
248248
echo "✅ Deleted ${{ matrix.variant }} test image from registry"
249249
else
250250
echo "⚠️ ${{ matrix.variant }} test image not found or already deleted"

.github/workflows/install-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
variant: [sglang, vllm]
148148
name: Install test (Docker ${{ matrix.variant }} image)
149149
container:
150-
image: ghcr.io/inclusionai/areal-runtime:dev-${{ matrix.variant }}
150+
image: ghcr.io/areal-project/areal-runtime:dev-${{ matrix.variant }}
151151

152152
steps:
153153
- name: Checkout repository

.github/workflows/tag-release-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ permissions:
2020

2121
env:
2222
GCP_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }}
23-
IMAGE_NAME: ghcr.io/inclusionai/areal-runtime
23+
IMAGE_NAME: ghcr.io/areal-project/areal-runtime
2424

2525
jobs:
2626
start-builder:
@@ -152,7 +152,7 @@ jobs:
152152
uses: docker/login-action@v4
153153
with:
154154
registry: ghcr.io
155-
username: inclusionai
155+
username: areal-project
156156
password: ${{ secrets.GHCR_TOKEN }}
157157

158158
- name: Build and push sglang image

.github/workflows/test-areal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
matrix:
7474
variant: ${{ fromJson(needs.determine-variants.outputs.matrix) }}
7575
env:
76-
CONTAINER_IMAGE: ghcr.io/inclusionai/areal-runtime:${{ inputs.image_tag || 'dev' }}-${{ matrix.variant }}
76+
CONTAINER_IMAGE: ghcr.io/areal-project/areal-runtime:${{ inputs.image_tag || 'dev' }}-${{ matrix.variant }}
7777
RUNNER_LABELS: gcp-a2-highgpu-2g,variant-${{ matrix.variant }}
7878
steps:
7979
- name: Set instance variables

AGENTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ areal/ Core Python package
7171
|-- utils/ Cross-cutting helpers (logging, data, checkpoints, RL ops)
7272
+-- workflow/ RolloutWorkflow implementations (RLVR, multi-turn, vision)
7373
74-
docs/ Jupyter Book docs (https://inclusionai.github.io/AReaL/)
74+
docs/ Jupyter Book docs (https://areal-project.github.io/AReaL/)
7575
examples/ Training scripts and launcher recipes
7676
```
7777

@@ -250,7 +250,7 @@ ______________________________________________________________________
250250

251251
## Reference material
252252

253-
- **Docs portal**: <https://inclusionai.github.io/AReaL/>
253+
- **Docs portal**: <https://areal-project.github.io/AReaL/>
254254
- **Quickstart**: `docs/tutorial/quickstart.md`
255255
- **Architecture**: `docs/tutorial/gsm8k_grpo.md`
256256
- **Customization**: `docs/customization/*.md`

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Please review our [Code of Conduct](CODE_OF_CONDUCT.md) before participating and
2626
1. **Install Development Dependencies:**
2727

2828
Check our
29-
[installation guide](https://inclusionai.github.io/AReaL/en/tutorial/installation.html)
29+
[installation guide](https://areal-project.github.io/AReaL/en/tutorial/installation.html)
3030
for detailed setup instructions.
3131

3232
1. **Set Up Pre-commit Hooks:**
@@ -41,11 +41,11 @@ Please review our [Code of Conduct](CODE_OF_CONDUCT.md) before participating and
4141
1. **Find an Issue:**
4242

4343
- Browse
44-
[good first issues](https://github.com/inclusionAI/AReaL/labels/good%20first%20issue)
45-
- Check [help wanted](https://github.com/inclusionAI/AReaL/labels/help%20wanted)
44+
[good first issues](https://github.com/areal-project/AReaL/labels/good%20first%20issue)
45+
- Check [help wanted](https://github.com/areal-project/AReaL/labels/help%20wanted)
4646
issues
4747
- Or create a new issue using our
48-
[issue templates](https://github.com/inclusionAI/AReaL/issues/new/choose)
48+
[issue templates](https://github.com/areal-project/AReaL/issues/new/choose)
4949

5050
1. **Make Your Changes:**
5151

@@ -98,7 +98,7 @@ waste your effort.
9898
## Tips for Using AI-Assisted Coding
9999

100100
See the full
101-
[AI-Assisted Development Guide](https://inclusionai.github.io/AReaL/en/reference/ai_assisted_dev.html)
101+
[AI-Assisted Development Guide](https://areal-project.github.io/AReaL/en/reference/ai_assisted_dev.html)
102102
for detailed documentation.
103103

104104
## CI/CD

0 commit comments

Comments
 (0)