Update README-EN.md

This commit is contained in:
何夕2077 2025-08-06 22:59:25 +08:00 committed by GitHub
parent 015a17a3a9
commit 464c759267

View file

@ -92,41 +92,35 @@ The project leverages various modern design patterns to ensure code maintainabil
```mermaid ```mermaid
graph TD graph TD
subgraph Core_Protocols subgraph Core_Protocols["核心协议"]
P_OPENAI(OpenAI Protocol) P_OPENAI[OpenAI Protocol]
P_GEMINI(Gemini Protocol) P_GEMINI[Gemini Protocol]
P_CLAUDE(Claude Protocol) P_CLAUDE[Claude Protocol]
end end
subgraph Supported_Model_Providers subgraph Supported_Model_Providers["支持的模型提供商"]
MP_OPENAI[openai-custom] MP_OPENAI[openai-custom]
MP_GEMINI[gemini-cli-oauth] MP_GEMINI[gemini-cli-oauth]
MP_CLAUDE_C[claude-custom] MP_CLAUDE_C[claude-custom]
MP_CLAUDE_K[claude-kiro-oauth] MP_CLAUDE_K[claude-kiro-oauth]
end end
subgraph Internal_Conversion_Logic P_OPENAI ---|支持| MP_OPENAI
direction LR P_OPENAI ---|支持| MP_GEMINI
P_OPENAI <-->|Request/Response Conversion| P_GEMINI P_OPENAI ---|支持| MP_CLAUDE_C
P_OPENAI <-->|Request/Response Conversion| P_CLAUDE P_OPENAI ---|支持| MP_CLAUDE_K
P_GEMINI <-->|Request/Response Conversion| P_CLAUDE
end
P_OPENAI ---|Supports| MP_OPENAI P_GEMINI ---|支持| MP_GEMINI
P_OPENAI ---|Supports| MP_GEMINI
P_OPENAI ---|Supports| MP_CLAUDE_C
P_OPENAI ---|Supports| MP_CLAUDE_K
P_GEMINI ---|Supports| MP_GEMINI P_CLAUDE ---|支持| MP_CLAUDE_C
P_CLAUDE ---|支持| MP_CLAUDE_K
P_CLAUDE ---|Supports| MP_CLAUDE_C P_CLAUDE ---|支持| MP_GEMINI
P_CLAUDE ---|Supports| MP_CLAUDE_K
P_CLAUDE ---|Supports| MP_GEMINI
style P_OPENAI fill:#f9f,stroke:#333,stroke-width:2px style P_OPENAI fill:#f9f,stroke:#333,stroke-width:2px
style P_GEMINI fill:#ccf,stroke:#333,stroke-width:2px style P_GEMINI fill:#ccf,stroke:#333,stroke-width:2px
style P_CLAUDE fill:#cfc,stroke:#333,stroke-width:2px style P_CLAUDE fill:#cfc,stroke:#333,stroke-width:2px
``` ```
--- ---