-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathastro.config.mjs
77 lines (76 loc) · 2.33 KB
/
astro.config.mjs
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
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
base: '/docs',
integrations: [
starlight({
title: 'Eko Docs',
social: {
github: 'https://github.com/FellouAI/eko',
},
sidebar: [
{
label: 'Guides',
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Overview', slug: 'getting-started/eko' },
{ label: 'Quickstart', slug: 'getting-started/quickstart' },
{ label: 'Installation', slug: 'getting-started/installation' },
{ label: 'Configuration', slug: 'getting-started/configuration' },
{ label: 'Dive deep into Eko', slug: 'getting-started/dive-deep' },
],
},
{
label: 'Browser use',
items: [
{ label: 'Browser Extension', slug: 'browseruse/browser-extension' },
{ label: 'Web', slug: 'browseruse/browser-web' },
],
},
{
label: 'Computer use',
items: [
{ label: 'Node.js', slug: 'computeruse/computer-node' }, // headless browser, MCP, Computer use
{ label: 'Fellou', slug: 'computeruse/computer-fellou' },
],
},
{
label: 'Tools',
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Overview', slug: 'tools/overview' },
{ label: 'Available tools', slug: 'tools/available' },
{ label: 'Custom tools', slug: 'tools/custom' },
{ label: 'Tools hook', slug: 'tools/hook' },
],
},
{
label: 'Architecture',
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Overview', slug: 'architecture' },
{ label: 'Hierarchical Planning', slug: 'architecture/execution-model' },
{ label: 'Environment-Aware Architecture', slug: 'architecture/env-architecture' },
{ label: 'Workflow', slug: 'architecture/workflow' },
{ label: 'Hook system', slug: 'architecture/hook-system' },
{ label: 'Web Information Extraction', slug: 'architecture/web-extraction' },
],
},
{
label: 'Reference',
items: [
{ label: 'Overview', slug: 'reference/overview' }
]
},
{
label: 'Release',
items: [
{ label: 'Roadmap', slug: 'release/overview' },
{ label: 'Release Notes', slug: 'release/versions' },
]
},
],
}),
],
});