Skip to content

Commit 0def192

Browse files
committed
fixed mmaid diagram add other model vendor support
1 parent 1461fb4 commit 0def192

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ flowchart LR
6161

6262
```mermaid
6363
flowchart TB
64-
subgraph Data Layer (JSON-RPC)
64+
subgraph DataLayer["Data Layer (JSON-RPC)"]
6565
I[initialize]
6666
TL[tools/list]
6767
TC[tools/call]
@@ -71,8 +71,8 @@ flowchart TB
7171
HTTP[HTTP + SSE]
7272
end
7373
I --> TL --> TC
74-
Data Layer (JSON-RPC) --> STD
75-
Data Layer (JSON-RPC) --> HTTP
74+
DataLayer --> STD
75+
DataLayer --> HTTP
7676
```
7777

7878
## MCP Workflow: Initialization to Tool Usage – A step-by-step view of the handshake and a typical tool call
@@ -102,12 +102,12 @@ sequenceDiagram
102102

103103
```mermaid
104104
flowchart LR
105-
subgraph Local Machine
105+
subgraph LocalMachine["Local Machine"]
106106
subgraph App
107107
CH[chat_with_tools.py]
108108
CL[OpenAI-compatible Client]
109109
end
110-
OL[Ollama (granite3.3)]
110+
OL["Ollama (granite3.3)"]
111111
SRV[server.py]
112112
end
113113
CH --> CL --> OL
@@ -119,9 +119,9 @@ flowchart LR
119119

120120
```mermaid
121121
flowchart LR
122-
SRV[server.py] -->|JSONL| L1[(logs/mcp-server.jsonl)]
123-
C1[client.py] -->|JSONL| L2[(logs/mcp-client-simple.jsonl)]
124-
C2[chat_with_tools.py] -->|JSONL| L3[(logs/mcp-client-chat.jsonl)]
122+
SRV[server.py] -->|JSONL| L1["logs/mcp-server.jsonl"]
123+
C1[client.py] -->|JSONL| L2["logs/mcp-client-simple.jsonl"]
124+
C2[chat_with_tools.py] -->|JSONL| L3["logs/mcp-client-chat.jsonl"]
125125
LV[log_viewer.py] -->|SSE| UI[Browser UI]
126126
L1 & L2 & L3 --> LV
127127
```

0 commit comments

Comments
 (0)