From 9624a120bc8b0dcbc47e8b83817d343132267255 Mon Sep 17 00:00:00 2001 From: Ho Duc Hieu <150573299+hieu-jan@users.noreply.github.com> Date: Thu, 4 Jan 2024 16:10:44 +0700 Subject: [PATCH] docs: fix error link --- docs/docs/docs/engineering/chats.md | 2 +- docs/docs/docs/engineering/threads.md | 2 +- docs/docs/docs/product/chat.md | 2 +- docs/docs/guides/00-overview.md | 8 ++++---- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/docs/docs/engineering/chats.md b/docs/docs/docs/engineering/chats.md index 7f6626b3e..eb0ae287a 100644 --- a/docs/docs/docs/engineering/chats.md +++ b/docs/docs/docs/engineering/chats.md @@ -29,7 +29,7 @@ In Jan, `chats` are LLM responses in the form of OpenAI compatible `chat complet ## Folder Structure -Chats are stateless, thus are not saved in `janroot`. Any content and relevant metadata from calling this endpoint is extracted and persisted through [Messages](/specs/messages). +Chats are stateless, thus are not saved in `janroot`. Any content and relevant metadata from calling this endpoint is extracted and persisted through [Messages](/docs/engineering/messages). ## API Reference diff --git a/docs/docs/docs/engineering/threads.md b/docs/docs/docs/engineering/threads.md index 4eb37aea8..a1cd2b4df 100644 --- a/docs/docs/docs/engineering/threads.md +++ b/docs/docs/docs/engineering/threads.md @@ -33,7 +33,7 @@ This is currently under development. - Threads are saved in the `/threads` folder. - Threads are organized by folders, one for each thread, and can be easily zipped, exported, and cleared. - Thread folders follow the naming: `assistant_id` + `thread_created_at`. -- Thread folders also contain `messages.jsonl` files. See [messages](/specs/messages). +- Thread folders also contain `messages.jsonl` files. See [messages](/docs/engineering/messages). ```yaml janroot/ diff --git a/docs/docs/docs/product/chat.md b/docs/docs/docs/product/chat.md index f328f56be..b0dcce2d6 100644 --- a/docs/docs/docs/product/chat.md +++ b/docs/docs/docs/product/chat.md @@ -16,7 +16,7 @@ keywords: ## Overview -A home screen for users to chat with [assistants](/specs/assistants) via conversation [threads](/specs/threads). +A home screen for users to chat with [assistants](/docs/engineering/assistants) via conversation [threads](/docs/engineering/threads). ![alt text](../img/chat-screen.png) diff --git a/docs/docs/guides/00-overview.md b/docs/docs/guides/00-overview.md index e6cf5d99a..e12798979 100644 --- a/docs/docs/guides/00-overview.md +++ b/docs/docs/guides/00-overview.md @@ -15,9 +15,9 @@ keywords: ] --- -Jan is a ChatGPT-alternative that runs on your own computer, with a [local API server](/api-reference/). +Jan is a ChatGPT-alternative that runs on your own computer, with a [local API server](/api-reference). -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/engineering/models), stores data in [open file formats](/developer/file-based), is highly customizable via [extensions](/developer/build-extension). 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. @@ -29,11 +29,11 @@ Jan runs 100% on your own machine, [predictably](https://www.reddit.com/r/LocalL #### 🏗️ 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](/developer/build-extension), which allows developers to extend and customize Jan's functionality. In fact, most core modules of Jan are [built as extensions](/developer/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](/developer/architecture). You're never locked-in and can do what you want with your data with extensions, or even a different app. #### 🌍 Open Source