-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
83 lines (82 loc) · 2.67 KB
/
astro.config.mjs
File metadata and controls
83 lines (82 loc) · 2.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
export default defineConfig({
site: 'https://docs.teichai.com',
vite: {
server: {
allowedHosts: true,
},
preview: {
allowedHosts: true,
},
},
integrations: [
starlight({
title: 'TeichAI Docs',
description: 'Documentation for TeichAI - Distilling frontier AI into open-source models',
logo: {
src: './src/assets/logo.svg',
replacesTitle: true,
},
favicon: '/favicon.svg',
social: {
github: 'https://github.com/TeichAI',
},
editLink: {
baseUrl: 'https://github.com/TeichAI/docs/edit/main/',
},
lastUpdated: true,
customCss: ['./src/styles/custom.css', './src/styles/header-overrides.css'],
components: {
SocialIcons: './src/components/SocialIcons.astro',
},
sidebar: [
{
label: 'Get Started',
items: [
{ label: 'Welcome', slug: 'get-started/welcome' },
{ label: 'What is Distillation?', slug: 'get-started/what-is-distillation' },
{ label: 'Quick Start', slug: 'get-started/quick-start' },
],
},
{
label: 'Notebooks',
items: [
{ label: 'All Notebooks', slug: 'notebooks/overview' },
{ label: 'Qwen3 4B 2507 Distill', slug: 'notebooks/qwen3-4b-2507-distill' },
{ label: 'Qwen3 30B-A3B 2507 Distill', slug: 'notebooks/qwen3-30b-a3b-distill' },
{ label: 'Qwen3 (Standard) Distill', slug: 'notebooks/qwen3-distill' },
],
},
{
label: 'Guides',
items: [
{ label: 'Creating Datasets', slug: 'guides/creating-datasets' },
{ label: 'Training Parameters', slug: 'guides/training-parameters' },
{ label: 'Exporting & Quantization', slug: 'guides/exporting-quantization' },
],
},
{
label: 'Training Techniques',
items: [
{ label: 'Supervised Fine Tuning (SFT)', slug: 'understanding/sft' },
{ label: 'Reinforcement Learning (RL)', slug: 'understanding/rl' },
{ label: 'Conclusion', slug: 'understanding/conclusion' },
],
},
{
label: 'Reference',
items: [
{ label: 'Configuration Options', slug: 'reference/configuration' },
{ label: 'Chat Templates', slug: 'reference/chat-templates' },
{ label: 'Troubleshooting', slug: 'reference/troubleshooting' },
],
},
],
tableOfContents: {
minHeadingLevel: 2,
maxHeadingLevel: 2,
},
}),
],
});