Skip to content

Commit 9c5c1c3

Browse files
committed
Add Discord community link
1 parent a029f38 commit 9c5c1c3

3 files changed

Lines changed: 17 additions & 0 deletions

File tree

README-CN.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
<a href="https://walkinglabs.github.io/modern-llm-notebook/"><strong>在线阅读</strong></a>
1313
·
1414
<a href="https://colab.research.google.com/github/walkinglabs/modern-llm-notebook/blob/main/notebooks/part1-foundation/01-tokenizer-basics.ipynb"><strong>Colab 开始</strong></a>
15+
·
16+
<a href="https://discord.gg/XU7DQmpqk"><strong>加入 Discord</strong></a>
1517
</p>
1618

1719
<p align="center">

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
<a href="https://walkinglabs.github.io/modern-llm-notebook/"><strong>Read Online</strong></a>
1313
·
1414
<a href="https://colab.research.google.com/github/walkinglabs/modern-llm-notebook/blob/main/notebooks-en/part1-foundation/01-tokenizer-basics.ipynb"><strong>Start in Colab</strong></a>
15+
·
16+
<a href="https://discord.gg/XU7DQmpqk"><strong>Join Discord</strong></a>
1517
</p>
1618

1719
<p align="center">

web/src/components/WalkingLabsModal.jsx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import {
88
} from 'lucide-react'
99

1010
const WECHAT_GROUP_QR_URL = 'https://github.com/walkinglabs/.github/raw/main/profile/wechat.png'
11+
const DISCORD_INVITE_URL = 'https://discord.gg/XU7DQmpqk'
1112

1213
const COPY = {
1314
zh: {
@@ -17,6 +18,7 @@ const COPY = {
1718
'我们探索 Agent 框架、工具链和最佳实践,并把过程中积累的经验整理成开源教程和项目。',
1819
note: '如果你对 Agent 技术感兴趣,欢迎加入我们一起讨论。',
1920
github: '看看 GitHub',
21+
discord: '加入 Discord',
2022
qrTitle: '加入社区',
2123
qrDesc: '扫码加入 WalkingLabs 微信群,一起探讨 Agent 技术。',
2224
loading: '加载二维码',
@@ -30,6 +32,7 @@ const COPY = {
3032
'We explore agent frameworks, toolchains, and best practices, sharing what we learn as open-source projects.',
3133
note: 'If you are interested in Agent technology, welcome to join the discussion.',
3234
github: 'View GitHub',
35+
discord: 'Join Discord',
3336
qrTitle: 'Join the Community',
3437
qrDesc: 'Scan to join the WalkingLabs WeChat group.',
3538
loading: 'Loading QR',
@@ -92,6 +95,16 @@ export default function WalkingLabsModal({ isOpen, onClose, lang }) {
9295
<span>{t.github}</span>
9396
<ExternalLink className="w-3.5 h-3.5" />
9497
</a>
98+
<a
99+
href={DISCORD_INVITE_URL}
100+
target="_blank"
101+
rel="noreferrer"
102+
className="walkinglabs-link walkinglabs-discord-link"
103+
>
104+
<MessageCircle className="w-4 h-4" />
105+
<span>{t.discord}</span>
106+
<ExternalLink className="w-3.5 h-3.5" />
107+
</a>
95108
</div>
96109

97110
<div className="walkinglabs-qr-panel">

0 commit comments

Comments
 (0)