diff --git a/website/docs/getting-started.md b/website/docs/getting-started.md
index 78f6d454f..0362832bd 100644
--- a/website/docs/getting-started.md
+++ b/website/docs/getting-started.md
@@ -9,11 +9,23 @@ Tabby is an open-source, self-hosted AI coding assistant. With Tabby, every team
[![Follow on Linkedin](https://shields.io/badge/Follow%20on%20Linkedin-e29351?logo=linkedin)](https://www.linkedin.com/company/tabbyml/)
[![Star on Github](https://img.shields.io/github/stars/TabbyML/tabby?labelColor=e29351&label=Star&color=ffffff&logo=github)](https://github.com/TabbyML/tabby)
+## π About the Docs
+
+| Section | Goal |
+| ------------------------------------------- | --------------------------------------------------------------------------- |
+| [π§ Installation](./installation) | Everything deployment: Docker, Homebrew, Hugging Face Space and many others |
+| [π» IDE / Editor Extensions](./extensions) | IDE/Editor extensions that can be seamlessly integrated with Tabby |
+| [π§βπ¬ Models Directory](./models) | A curated list of models that we recommend using with Tabby |
+| [π·οΈ API References](/api) | API Documentation |
+| [ποΈ Community](#%EF%B8%8F-community) | Everything about for developers and contributing |
+| [πΊοΈ Roadmap](./roadmap) | Our future plans |
+
## π Principles
+
* **Open**: Tabby is free, open-source, and compatible with major Coding LLMs (CodeLlama, StarCoder, CodeGen). In fact, you can use and combine your preferred models without implementing anything by yourself.
* **End-to-End**: While most coding tools consider code completion merely as a thin wrapper atop Coding LLMs, in real-world scenarios, optimizations in IDE extensions can be just as crucial as the capabilities of Coding LLMs.
-Tabby optimizes the entire serving stack:
+Tabby optimizes the entire stack:
+ IDE extensions: Tabby achieves accurate streaming and cancellation with an adaptive caching strategy to ensure rapid completion (in less than a second).
+ Model serving: Tabby parses relevant code into Tree Sitter tags to provide effective prompts.
@@ -27,8 +39,4 @@ Tabby optimizes the experience for these core users to enhance your team's produ
β Tabby [Github repo](https://github.com/TabbyML/tabby) to stay updated about new releases and tutorials.
-π Join the Tabby community on [Slack](https://join.slack.com/t/tabbycommunity/shared_invite/zt-1xeiddizp-bciR2RtFTaJ37RBxr8VxpA) and get direct support from the community.
-
-
-## πΊοΈ Roadmap
-We continuously work on updating [our roadmap](./roadmap) and we love to discuss those with our community. Feel encouraged to participate.
+π Join the Tabby community on [Slack](https://join.slack.com/t/tabbycommunity/shared_invite/zt-1xeiddizp-bciR2RtFTaJ37RBxr8VxpA) and get direct support from the community.
\ No newline at end of file
diff --git a/website/docs/models/index.md b/website/docs/models/index.md
index 13f323ce9..4d2262b86 100644
--- a/website/docs/models/index.md
+++ b/website/docs/models/index.md
@@ -4,16 +4,16 @@ sidebar_position: 4
# π§βπ¬ Models Directory
-We maintains a recommended collection of models varies from 200M to 10B+ for various use cases.
+We maintains a curated list of models varies from 200M to 10B+.
-| Model ID | License | Metal Support |
-| --------------------------------------------------------------------- | ---------------- | :-------------------------------------------------: |
-| [TabbyML/CodeLlama-13B](https://huggingface.co/TabbyML/CodeLlama-13B) | Llama2 | β |
-| [TabbyML/CodeLlama-7B](https://huggingface.co/TabbyML/CodeLlama-7B) | Llama2 | β
|
-| [TabbyML/StarCoder-1B](https://huggingface.co/TabbyML/StarCoder-1B) | BigCode-OpenRAIL | β |
-| [TabbyML/SantaCoder-1B](https://huggingface.co/TabbyML/SantaCoder-1B) | OpenRAIL | β |
-| [TabbyML/J-350M](https://huggingface.co/TabbyML/J-350M) | BSD-3 | β |
-| [TabbyML/T5P-220M](https://huggingface.co/TabbyML/T5P-220M) | BSD-3 | β |
+| Model ID | License | Metal Support |
+| --------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | :-------------------------------------------------: |
+| [TabbyML/CodeLlama-13B](https://huggingface.co/TabbyML/CodeLlama-13B) | [Llama2](https://github.com/facebookresearch/llama/blob/main/LICENSE) | β |
+| [TabbyML/CodeLlama-7B](https://huggingface.co/TabbyML/CodeLlama-7B) | [Llama2](https://github.com/facebookresearch/llama/blob/main/LICENSE) | β
|
+| [TabbyML/StarCoder-1B](https://huggingface.co/TabbyML/StarCoder-1B) | [BigCode-OpenRAIL-M](https://huggingface.co/spaces/bigcode/bigcode-model-license-agreement) | β |
+| [TabbyML/SantaCoder-1B](https://huggingface.co/TabbyML/SantaCoder-1B) | [BigCode-OpenRAIL-M](https://huggingface.co/spaces/bigcode/bigcode-model-license-agreement) | β |
+| [TabbyML/J-350M](https://huggingface.co/TabbyML/J-350M) | [BSD-3](https://opensource.org/license/bsd-3-clause/) | β |
+| [TabbyML/T5P-220M](https://huggingface.co/TabbyML/T5P-220M) | [BSD-3](https://opensource.org/license/bsd-3-clause/) | β |
### CodeLlama-7B / CodeLlama-13B
Code Llama is a collection of pretrained and fine-tuned generative text models. Theses model is designed for general code synthesis and understanding.
diff --git a/website/docs/roadmap.md b/website/docs/roadmap.md
index 5bc18cd10..ef31f2e60 100644
--- a/website/docs/roadmap.md
+++ b/website/docs/roadmap.md
@@ -1,4 +1,6 @@
-# π Roadmap
+# πΊοΈ Roadmap
+
+We continuously work on updating our roadmap and we love to discuss those with our community. Feel encouraged to participate.
## Q4 2023
* π§ Improve RAG by deeper integration with Treesitter using custom query. This will bring LSP-like understanding to Tabby's code index.