163 lines
3.2 KiB
JavaScript
163 lines
3.2 KiB
JavaScript
/**
|
|
* Creating a sidebar enables you to:
|
|
- create an ordered group of docs
|
|
- render a sidebar for each doc of that group
|
|
- provide next/previous navigation
|
|
|
|
The sidebars are explicitly defined here.
|
|
|
|
Create as many sidebars as you want.
|
|
*/
|
|
|
|
// @ts-check
|
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
guidesSidebar: [
|
|
{
|
|
type: "category",
|
|
label: "Introduction",
|
|
link: { type: "doc", id: "intro/introduction" },
|
|
collapsible: true,
|
|
collapsed: true,
|
|
items: ["intro/quickstart", "intro/how-jan-works"],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Installation",
|
|
link: { type: "doc", id: "install/overview" },
|
|
collapsible: true,
|
|
collapsed: true,
|
|
items: [
|
|
"install/windows",
|
|
"install/mac",
|
|
"install/linux",
|
|
"install/from-source",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Using Jan",
|
|
collapsible: true,
|
|
collapsed: true,
|
|
items: ["docs/models", "docs/server"],
|
|
},
|
|
],
|
|
|
|
developerSidebar: [
|
|
"docs/extensions",
|
|
"docs/assistants",
|
|
"docs/themes",
|
|
"docs/tools",
|
|
"docs/modules",
|
|
],
|
|
|
|
apiSidebar: [
|
|
"api/overview",
|
|
{
|
|
type: "category",
|
|
label: "Endpoints",
|
|
collapsible: true,
|
|
collapsed: false,
|
|
items: [
|
|
{
|
|
type: "autogenerated",
|
|
dirName: "api",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
|
|
specsSidebar: [
|
|
{
|
|
type: "category",
|
|
label: "Overview",
|
|
collapsible: true,
|
|
collapsed: false,
|
|
items: [
|
|
"specs/architecture",
|
|
"specs/data-structures",
|
|
"specs/user-interface",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Product",
|
|
collapsible: true,
|
|
collapsed: false,
|
|
items: [
|
|
"specs/home",
|
|
"specs/hub",
|
|
"specs/system-monitor",
|
|
"specs/settings",
|
|
],
|
|
},
|
|
|
|
{
|
|
type: "category",
|
|
label: "Engineering",
|
|
collapsible: true,
|
|
collapsed: false,
|
|
items: [
|
|
"specs/chats",
|
|
"specs/models",
|
|
"specs/threads",
|
|
"specs/messages",
|
|
"specs/assistants",
|
|
// "specs/files",
|
|
// "specs/jan",
|
|
// "specs/fine-tuning",
|
|
// "specs/settings",
|
|
// "specs/prompts",
|
|
],
|
|
},
|
|
],
|
|
|
|
communitySidebar: [
|
|
"community/community",
|
|
{
|
|
type: "category",
|
|
label: "Events",
|
|
collapsible: true,
|
|
collapsed: true,
|
|
items: [
|
|
"events/nvidia-llm-day-nov-23",
|
|
{
|
|
type: "doc",
|
|
label: "Oct 23: HCMC Hacker House",
|
|
id: "events/hcmc-oct23",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
|
|
aboutSidebar: [
|
|
{
|
|
type: "doc",
|
|
label: "About Jan",
|
|
id: "about/about",
|
|
},
|
|
{
|
|
type: "link",
|
|
label: "Careers",
|
|
href: "https://janai.bamboohr.com/careers",
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Company Handbook",
|
|
collapsible: true,
|
|
collapsed: true,
|
|
// link: { type: "doc", id: "handbook/handbook" },
|
|
items: [
|
|
{
|
|
type: "doc",
|
|
label: "Engineering",
|
|
id: "handbook/engineering/engineering",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
module.exports = sidebars;
|