-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathastro.config.mjs
More file actions
118 lines (117 loc) · 4.35 KB
/
astro.config.mjs
File metadata and controls
118 lines (117 loc) · 4.35 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import starlightBlog from 'starlight-blog';
import remarkMath from 'remark-math';
import rehypeKatex from 'rehype-katex';
import sitemap from '@astrojs/sitemap';
export default defineConfig({
site: 'https://minish.ai',
redirects: {
'/packages': '/packages/overview/',
},
integrations: [
sitemap(),
starlight({
title: 'Minish',
components: {
Header: './src/components/Header.astro',
},
description: 'Fast open-source NLP models and packages',
logo: {
light: '/logo/minish_logo_lighter.png',
dark: '/logo/minish_logo_lighter.png',
replacesTitle: false,
},
favicon: '/logo/minish_logo.png',
customCss: ['./src/styles/custom.css'],
head: [
{
tag: 'script',
attrs: {
src: 'https://www.googletagmanager.com/gtag/js?id=G-LQWDNXKF2X',
async: true,
},
},
{
tag: 'script',
content: `window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-LQWDNXKF2X');`,
},
],
social: [
{ icon: 'github', label: 'GitHub', href: 'https://github.com/minishlab' },
{ icon: 'linkedin', label: 'LinkedIn', href: 'https://linkedin.com/company/minish-lab' },
{ icon: 'x.com', label: 'X', href: 'https://x.com/minishlab' },
{ icon: 'discord', label: 'Discord', href: 'https://discord.gg/4BDPR5nmtK' },
],
plugins: [
starlightBlog({
title: 'Blog',
authors: {
minish: { name: 'Minish Lab', url: 'https://minish.ai' },
},
}),
],
sidebar: [
{
label: 'Packages',
items: [
{ label: 'Overview', link: '/packages/overview/' },
{
label: 'Model2Vec',
items: [
{ label: 'Introduction', link: '/packages/model2vec/introduction/' },
{ label: 'Installation', link: '/packages/model2vec/installation/' },
{ label: 'Inference', link: '/packages/model2vec/inference/' },
{ label: 'Distillation', link: '/packages/model2vec/distillation/' },
{ label: 'Training', link: '/packages/model2vec/training/' },
{ label: 'Models', link: '/packages/model2vec/models/' },
{ label: 'Results', link: '/packages/model2vec/results/' },
{ label: 'Integrations', link: '/packages/model2vec/integrations/' },
],
},
{
label: 'SemHash',
items: [
{ label: 'Introduction', link: '/packages/semhash/introduction/' },
{ label: 'Installation', link: '/packages/semhash/installation/' },
{ label: 'Deduplication', link: '/packages/semhash/deduplication/' },
{ label: 'Outlier Filtering', link: '/packages/semhash/outlier-filtering/' },
{ label: 'Representative Sampling', link: '/packages/semhash/representative-sampling/' },
{ label: 'Benchmarks', link: '/packages/semhash/benchmarks/' },
{ label: 'Custom Encoders', link: '/packages/semhash/custom-encoders/' },
],
},
{
label: 'Vicinity',
items: [
{ label: 'Introduction', link: '/packages/vicinity/introduction/' },
{ label: 'Installation', link: '/packages/vicinity/installation/' },
{ label: 'Usage', link: '/packages/vicinity/usage/' },
{ label: 'Supported Backends', link: '/packages/vicinity/supported-backends/' },
],
},
{
label: 'Tokenlearn',
items: [
{ label: 'Usage', link: '/packages/tokenlearn/usage/' },
],
},
{
label: 'Model2Vec-rs',
items: [
{ label: 'Usage', link: '/packages/model2vec-rs/usage/' },
],
},
],
},
],
}),
],
markdown: {
remarkPlugins: [remarkMath],
rehypePlugins: [rehypeKatex],
},
});