Skip to content

Commit

Permalink
AI
Browse files Browse the repository at this point in the history
  • Loading branch information
moqsien committed Nov 30, 2024
1 parent 18b041d commit 57d69ca
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
8 changes: 8 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export default defineConfig({
items: [
// Each item here is one entry in the navigation menu.
{ label: '编程相关', slug: 'tools/programming' },
{ label: 'AI工具', slug: 'tools/ai' },
{ label: '其他工具', slug: 'tools/tools' },
],
},
Expand Down Expand Up @@ -61,6 +62,13 @@ export default defineConfig({
{ label: 'k8s', slug: 'devops/k8s' },
],
},
{
label: 'AI学习',
items: [
// Each item here is one entry in the navigation menu.
{ label: '大模型学习', slug: 'ai/ai' },
],
},
],
defaultLocale: 'root',
locales:{
Expand Down
4 changes: 4 additions & 0 deletions src/content/docs/ai/ai.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: AI大模型相关资料
description: 一起学习AI大模型.
---
24 changes: 24 additions & 0 deletions src/content/docs/tools/ai.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: AI大模型相关实用工具
description: 让工作效率飞起来.
---

import { Card, CardGrid, LinkCard, Icon } from '@astrojs/starlight/components';

<CardGrid>
<Card title="kimi.ai" icon="seti:notebook">
<LinkCard title="网站" href="https://kimi.moonshot.cn/" />
</Card>
<Card title="豆包AI" icon="seti:notebook">
<LinkCard title="网站" href="https://www.doubao.com/chat/" />
</Card>
<Card title="讯飞星火" icon="seti:notebook">
<LinkCard title="网站" href="https://xinghuo.xfyun.cn/%EF%BC%89" />
</Card>
<Card title="通义千问" icon="seti:notebook">
<LinkCard title="网站" href="https://tongyi.aliyun.com/" />
</Card>
<Card title="文心一言" icon="seti:notebook">
<LinkCard title="网站" href="https://yiyan.baidu.com/" />
</Card>
</CardGrid>

0 comments on commit 57d69ca

Please sign in to comment.