-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsidebars.ts
87 lines (84 loc) · 1.95 KB
/
sidebars.ts
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
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
guidesSidebar: [{type: 'autogenerated', dirName: 'guides'}],
promptsSidebar: [{type: 'autogenerated', dirName: 'prompts'}],
appsSidebar: [{type: 'autogenerated', dirName: 'apps'}],
advancedSidebar: [{type: 'autogenerated', dirName: 'advanced'}],
bizSidebar: [
{
type: 'category',
label: 'Популярные сценарии',
items: [
'biz/main/coding'
],
collapsed: false,
},
{
type: 'category',
label: 'Прочее',
items: [
'biz/secondary/FC_why',
'biz/secondary/searc-suggestions-w-gpt',
],
},
],
adapterSidebar: [
{
type: 'doc',
id: 'adapter/index',
label: 'Зачем нужен адаптер?',
},
{
type: 'doc',
id: 'adapter/quickstart',
label: 'Начало работы',
},
{
type: 'doc',
id: 'adapter/public-endpoints',
label: 'Публичные эндпоинты',
},
{
type: 'category',
label: 'Функционал',
items: [
'adapter/functionality/basics',
'adapter/functionality/clf',
'adapter/functionality/using-tools',
'adapter/functionality/mapping',
],
collapsed: false,
},
{
type: 'category',
label: 'Примеры',
items: [
'adapter/examples/langchain',
'adapter/examples/sdk-py',
'adapter/examples/sdk-js',
],
},
{
type: 'link',
label: 'Source code',
href: 'https://github.com/ai-cookbook/openai-yandexgpt-adapter',
},
{
type: 'doc',
id: 'adapter/deploy',
label: 'Self-hosting',
},
{
type: 'doc',
id: 'adapter/help',
label: 'Помощь',
},
],
etcSidebar: [
{
type: 'autogenerated',
dirName: 'etc',
},
],
};
export default sidebars;