summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-09-06 12:20:47 +0300
committerPaul Buetow <paul@buetow.org>2025-09-06 12:20:47 +0300
commitcbe59f50bac8f4bf674603844b6a684b0fa62759 (patch)
treed8ef3e0eabc0672fc0f6e694fdd97094f570ed3a /docs
parent9ee72c9371fbae2968c887ff50a5c12374adbdc0 (diff)
remove ascii diagram
Diffstat (limited to 'docs')
-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`,