vault backup: 2025-08-04 15:16:29

This commit is contained in:
Andrey Epifancev
2025-08-04 15:16:29 +04:00
parent f2983ded62
commit df6aa56f7e
2 changed files with 137 additions and 98 deletions

View File

@@ -46,12 +46,25 @@
## 3. Поток обработки сообщений MVP
```text
User -> Telegram Bot -> Bot Handler
-> /new <text>
-> Note Service -> LLM Service (format) -> File Service -> Git Service
<- "Заметка создана: <filename>"
```mermaid
graph TB
A[User] --> B[Telegram Bot]
B --> C[Bot Handler]
C --> D[/new text]
D --> E[Note Service]
E --> F[LLM Service format]
F --> G[File Service]
G --> H[Git Service]
H --> I["Заметка создана: filename"]
I --> A
subgraph "MVP Flow"
D
E
F
G
H
end
```
---