@@ -13,7 +13,7 @@ Welcome to chronicle! This guide provides the optimal reading sequence to unders
1313- What the system does (voice → memories)
1414- Key features and capabilities
1515- Basic setup and configuration
16- - ** Code References** : ` src/advanced_omi_backend/main.py ` , ` memory_config.yaml ` , ` docker-compose.yml `
16+ - ** Code References** : ` src/advanced_omi_backend/main.py ` , ` config.yml ` , ` docker-compose.yml `
1717
1818### 2. ** [ System Architecture] ( ./architecture.md ) **
1919** Read second** - Complete technical architecture with diagrams
@@ -70,12 +70,12 @@ Welcome to chronicle! This guide provides the optimal reading sequence to unders
7070
7171## 🔍 ** Configuration & Customization**
7272
73- ### 6. ** Configuration File** → ` ../memory_config.yaml `
73+ ### 6. ** Configuration File** → ` ../config.yml `
7474** Central configuration for all extraction**
7575- Memory extraction settings and prompts
7676- Quality control and debug settings
7777- ** Code References** :
78- - ` src/advanced_omi_backend/memory_config_loader .py ` (config loading)
78+ - ` src/advanced_omi_backend/model_registry .py ` (config loading)
7979 - ` src/advanced_omi_backend/memory/memory_service.py ` (config usage)
8080
8181---
@@ -86,11 +86,11 @@ Welcome to chronicle! This guide provides the optimal reading sequence to unders
86861 . [ quickstart.md] ( ./quickstart.md ) - System overview
87872 . [ architecture.md] ( ./architecture.md ) - Technical architecture
88883 . ` src/advanced_omi_backend/main.py ` - Core imports and setup
89- 4 . ` memory_config.yaml ` - Configuration overview
89+ 4 . ` config.yml ` - Configuration overview
9090
9191### ** "I want to work on memory extraction"**
92921 . [ memories.md] ( ./memories.md ) - Memory system details
93- 2 . ` ../memory_config.yaml ` - Memory configuration
93+ 2 . ` ../config.yml ` - Models and memory configuration
94943 . ` src/advanced_omi_backend/memory/memory_service.py ` - Implementation
95954 . ` src/advanced_omi_backend/controllers/memory_controller.py ` - Processing triggers
9696
@@ -128,9 +128,9 @@ backends/advanced-backend/
128128│ ├── controllers/ # Business logic controllers
129129│ ├── memory/
130130│ │ └── memory_service.py # Memory system (Mem0)
131- │ └── memory_config_loader .py # Configuration loading
131+ │ └── model_registry .py # Configuration loading
132132│
133- ├── memory_config.yaml # 📋 Central configuration
133+ ├── config.yml # 📋 Central configuration
134134├── MEMORY_DEBUG_IMPLEMENTATION.md # Debug system details
135135```
136136
@@ -147,8 +147,8 @@ backends/advanced-backend/
147147- ** Memories** : ` src/advanced_omi_backend/memory/memory_service.py ` → Mem0 → Qdrant
148148
149149### ** Configuration**
150- - ** Loading** : ` src/advanced_omi_backend/memory_config_loader .py `
151- - ** File** : ` memory_config.yaml `
150+ - ** Loading** : ` src/advanced_omi_backend/model_registry .py `
151+ - ** File** : ` config.yml `
152152- ** Usage** : ` src/advanced_omi_backend/memory/memory_service.py `
153153
154154### ** Authentication**
@@ -162,7 +162,7 @@ backends/advanced-backend/
162162
1631631 . ** Follow the references** : Each doc links to specific code files and line numbers
1641642 . ** Use the debug API** : ` GET /api/debug/memory/stats ` shows live system status
165- 3 . ** Check configuration first** : Many behaviors are controlled by ` memory_config.yaml `
165+ 3 . ** Check configuration first** : Many behaviors are controlled by ` config.yml `
1661664 . ** Understand the memory pipeline** : Memories (end-of-conversation)
1671675 . ** Test with curl** : All API endpoints have curl examples in the docs
168168
@@ -175,23 +175,23 @@ backends/advanced-backend/
1751751 . ** Set up the system** : Follow [ quickstart.md] ( ./quickstart.md ) to get everything running
1761762 . ** Test the API** : Use the curl examples in the documentation to test endpoints
1771773 . ** Explore the debug system** : Check ` GET /api/debug/memory/stats ` to see live data
178- 4 . ** Modify configuration** : Edit ` memory_config.yaml ` to see how it affects extraction
178+ 4 . ** Modify configuration** : Edit ` config.yml ` (memory section) to see how it affects extraction
1791795 . ** Read the code** : Start with ` src/advanced_omi_backend/main.py ` and follow the references in each doc
180180
181181### ** Contributing Guidelines**
182182
183183- ** Add code references** : When updating docs, include file paths and line numbers
184184- ** Test your changes** : Use the debug API to verify your modifications work
185- - ** Update configuration** : Add new settings to ` memory_config.yaml ` when needed
185+ - ** Update configuration** : Add new settings to ` config.yml ` when needed
186186- ** Follow the architecture** : Keep memories in their respective services
187187
188188### ** Getting Help**
189189
190190- ** Debug API** : ` GET /api/debug/memory/* ` endpoints show real-time system status
191- - ** Configuration** : Check ` memory_config.yaml ` for behavior controls
191+ - ** Configuration** : Check ` config.yml ` for behavior controls
192192- ** Logs** : Check Docker logs with ` docker compose logs chronicle-backend `
193193- ** Documentation** : Each doc file links to relevant code sections
194194
195195---
196196
197- This documentation structure ensures you understand both the ** big picture** and ** implementation details** in a logical progression!
197+ This documentation structure ensures you understand both the ** big picture** and ** implementation details** in a logical progression!
0 commit comments