From 1223a950cf5990cf1ed88904f0b74e7233fb10a9 Mon Sep 17 00:00:00 2001 From: Divyendu Dutta Date: Sat, 3 Jan 2026 19:48:26 +0530 Subject: [PATCH 1/4] [DOC] Add new section for indexing module --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 853a178..27d8075 100644 --- a/README.md +++ b/README.md @@ -46,10 +46,14 @@ RAG is good because: [Chunker Module](atlas/core/chunker/README.md) -#### Embedding and Indexing +#### Embedding [Embedding Module](atlas/core/embedder/README.md) +#### Indexing + +[Indexing Module](atlas/core/indexer/README.md) + #### Obsidian [Obsidian](https://obsidian.md/) is a light weight application used to take notes and create knowledge bases. It saves all the notes as markdown making it easy to load, process and render a huge amount of notes. From 608f52f229245749055d85139f7fa69c8c49812c Mon Sep 17 00:00:00 2001 From: Divyendu Dutta Date: Sat, 3 Jan 2026 19:54:11 +0530 Subject: [PATCH 2/4] [DOC] Show architecture diagram inline in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 27d8075..be87024 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ So it follows the scaling law that even a small LLM when trained on enough quali ## Architecture -High level [architecture diagram](Resources/Atlas_Architecture.png) +High level ![architecture diagram](Resources/Atlas_Architecture.png) A sample of the `obsidian_index.json` is as below: From 75ce19b32c2bcd21893a07033b32d820927f14bc Mon Sep 17 00:00:00 2001 From: Divyendu Dutta Date: Sat, 3 Jan 2026 19:55:27 +0530 Subject: [PATCH 3/4] [DOC] Minor changes to README --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index be87024..bc6555d 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,9 @@ So it follows the scaling law that even a small LLM when trained on enough quali ## Architecture -High level ![architecture diagram](Resources/Atlas_Architecture.png) +Architecture diagram: + +![architecture diagram](Resources/Atlas_Architecture.png) A sample of the `obsidian_index.json` is as below: From afe59f01eb9e944595b4e7aa4de2a5ac1275b613 Mon Sep 17 00:00:00 2001 From: Divyendu Dutta Date: Sat, 3 Jan 2026 20:01:57 +0530 Subject: [PATCH 4/4] [DOC] Minor changes to README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bc6555d..e1c3121 100644 --- a/README.md +++ b/README.md @@ -48,11 +48,11 @@ RAG is good because: #### Embedding -[Embedding Module](atlas/core/embedder/README.md) +[Embedder Module](atlas/core/embedder/README.md) #### Indexing -[Indexing Module](atlas/core/indexer/README.md) +[Indexer Module](atlas/core/indexer/README.md) #### Obsidian