diff --git a/docs/docs/intro/how-jan-works.md b/docs/docs/guides/how-jan-works.md similarity index 100% rename from docs/docs/intro/how-jan-works.md rename to docs/docs/guides/how-jan-works.md diff --git a/docs/docs/intro/introduction.md b/docs/docs/guides/introduction.md similarity index 71% rename from docs/docs/intro/introduction.md rename to docs/docs/guides/introduction.md index 1501cfc4b..667b0b9d7 100644 --- a/docs/docs/intro/introduction.md +++ b/docs/docs/guides/introduction.md @@ -1,36 +1,50 @@ --- title: Introduction -slug: /docs +slug: /guides description: Jan is a ChatGPT-alternative that runs on your own computer, with a local API server. -keywords: [Jan, ChatGPT alternative, on-premises AI, local API server, local AI, llm, conversational AI, no-subscription fee] +keywords: + [ + Jan, + ChatGPT alternative, + on-premises AI, + local API server, + local AI, + llm, + conversational AI, + no-subscription fee, + ] --- -Jan is a ChatGPT-alternative that runs on your own computer, with a [local API server](/api). +Jan is a ChatGPT-alternative that runs on your own computer, with a [local API server](/api). -Jan uses [open-source AI models](/docs/models), stores data in [open file formats](/specs/data-structures), is highly customizable via [extensions](/docs/extensions). +Jan uses [open-source AI models](/docs/models), stores data in [open file formats](/specs/data-structures), is highly customizable via [extensions](/docs/extensions). -Jan believes in the need for an open source AI ecosystem. We aim to build infra and tooling to allow open source AIs to compete on a level playing field with proprietary offerings. +Jan believes in the need for an open source AI ecosystem. We aim to build infra and tooling to allow open source AIs to compete on a level playing field with proprietary offerings. ## Why Jan? #### 💻 Own your AI -Jan runs 100% on your own machine, [predictably](https://www.reddit.com/r/LocalLLaMA/comments/17mghqr/comment/k7ksti6/?utm_source=share&utm_medium=web2x&context=3), privately and even offline. No one else can see your conversations, not even us. + +Jan runs 100% on your own machine, [predictably](https://www.reddit.com/r/LocalLLaMA/comments/17mghqr/comment/k7ksti6/?utm_source=share&utm_medium=web2x&context=3), privately and even offline. No one else can see your conversations, not even us. #### 🏗️ Extensions -Jan ships with a powerful [extension framework](/docs/extensions), which allows developers to extend and customize Jan's functionality. In fact, most core modules of Jan are [built as extensions](/specs/architecture) and use the same extensions API. + +Jan ships with a powerful [extension framework](/docs/extensions), which allows developers to extend and customize Jan's functionality. In fact, most core modules of Jan are [built as extensions](/specs/architecture) and use the same extensions API. #### 🗂️ Open File Formats -Jan stores data in a [local folder of non-proprietary files](/specs/data-structures). You're never locked-in and can do what you want with your data with extensions, or even a different app. + +Jan stores data in a [local folder of non-proprietary files](/specs/data-structures). You're never locked-in and can do what you want with your data with extensions, or even a different app. #### 🌍 Open Source -Both Jan and [Nitro](https://nitro.jan.ai), our lightweight inference engine, are licensed via the open source [AGPLv3 license](https://github.com/janhq/jan/blob/main/LICENSE). + +Both Jan and [Nitro](https://nitro.jan.ai), our lightweight inference engine, are licensed via the open source [AGPLv3 license](https://github.com/janhq/jan/blob/main/LICENSE). - \ No newline at end of file +Participatory: https://www.getlago.com/blog/the-5-reasons-why-we-chose-open-source --> diff --git a/docs/docs/docs/models.md b/docs/docs/guides/models.md similarity index 100% rename from docs/docs/docs/models.md rename to docs/docs/guides/models.md diff --git a/docs/docs/intro/quickstart.md b/docs/docs/guides/quickstart.md similarity index 100% rename from docs/docs/intro/quickstart.md rename to docs/docs/guides/quickstart.md diff --git a/docs/docs/docs/server.md b/docs/docs/guides/server.md similarity index 100% rename from docs/docs/docs/server.md rename to docs/docs/guides/server.md diff --git a/docs/sidebars.js b/docs/sidebars.js index 384f47e9d..8d56cac63 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -17,10 +17,10 @@ const sidebars = { { type: "category", label: "Introduction", - link: { type: "doc", id: "intro/introduction" }, + link: { type: "doc", id: "guides/introduction" }, collapsible: true, collapsed: true, - items: ["intro/quickstart", "intro/how-jan-works"], + items: ["guides/quickstart", "guides/how-jan-works"], }, { type: "category", @@ -40,7 +40,7 @@ const sidebars = { label: "Using Jan", collapsible: true, collapsed: true, - items: ["docs/models", "docs/server"], + items: ["guides/models", "guides/server"], }, ],