-
Notifications
You must be signed in to change notification settings - Fork 1
/
sidebars.ts
70 lines (67 loc) · 1.77 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
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: 'autogenerated', dirName: 'biz'}],
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: 'Примеры',
link: {
type: 'generated-index',
title: 'Примеры',
description: 'Примеры использования адаптера',
slug: '/adapter/examples',
},
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: 'Помощь',
},
],
};
export default sidebars;