summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/source-structure.md48
1 files changed, 0 insertions, 48 deletions
diff --git a/docs/source-structure.md b/docs/source-structure.md
index 65db4d9..0c7f56f 100644
--- a/docs/source-structure.md
+++ b/docs/source-structure.md
@@ -47,54 +47,6 @@ graph TD
V --> C
```
-## ASCII diagram
-
-```
- +----------------------+
- | internal/version.go |
- +----------------------+
- | provides Version
- +-------------+-------------+
- | |
- +--------------+ +----------------+
- | cmd/hexai | | cmd/hexai-lsp |
- | (CLI) | | (LSP server) |
- +--------------+ +----------------+
- | |
- v v
- +------------------+ +------------------+
- | internal/hexaicli| | internal/hexailsp|
- | (CLI runner) | | (LSP runner) |
- +------------------+ +------------------+
- | | | | | |
- | | | | | +----> logging
- | | +----> logging | +--------> llm (client)
- | +--------> llm (client) +-------------> appconfig
- +-------------> appconfig |
- builds options
- v
- +------------------+
- | internal/lsp |
- | (server, JSON-RPC|
- | handlers, docs) |
- +------------------+
- | |
- | +----> logging
- +-------------> llm (client)
-
- llm providers:
- +-----------------------------+
- | internal/llm/providers |
- | - openai.go |
- | - ollama.go |
- | - copilot.go |
- +-----------------------------+
-
- shared libs:
- - internal/appconfig: config from file/env
- - internal/logging: logger binding + helpers
-```
-
## Module overview
- cmd/hexai: CLI binary that parses flags, prints version via `internal.Version`,