This commit is contained in:
Lars 2025-12-15 16:52:20 +01:00
parent cd3946bd11
commit 179949b289

View File

@ -73,11 +73,11 @@ graph TD
Vom Markdown zur Vektor-Datenbank.
```mermaid
graph LR
MD[Markdown File] --> Parser(Parser)
Parser --> Chunker(Chunker)
Chunker -- "Text Chunks" --> SemAn{SemanticAnalyzer<br/>(LLM)}
SemAn -- "Smart Edges" --> Embedder(Embedder)
Embedder --> DB[(Qdrant<br/>Points)]
MD["Markdown File"] --> Parser("Parser")
Parser --> Chunker("Chunker")
Chunker -- "Text Chunks" --> SemAn{"SemanticAnalyzer<br/>(LLM)"}
SemAn -- "Smart Edges" --> Embedder("Embedder")
Embedder --> DB[("Qdrant<br/>Points")]
style DB fill:#f9f,stroke:#333,stroke-width:2px
style SemAn fill:#ff9,stroke:#333,stroke-width:2px