|
| 1 | + |
| 2 | +flowchart TB |
| 3 | + subgraph Integration |
| 4 | + direction TB |
| 5 | + Clients[Client Connectors]:::clients |
| 6 | + Models[Model Providers]:::models |
| 7 | + end |
| 8 | + |
| 9 | + subgraph Core |
| 10 | + direction TB |
| 11 | + Runtime[Agent Runtime]:::core |
| 12 | + Memory[Memory Manager]:::core |
| 13 | + Cache[Cache Manager]:::core |
| 14 | + Services[Service Layer]:::core |
| 15 | + end |
| 16 | + |
| 17 | + subgraph Plugins |
| 18 | + direction TB |
| 19 | + CorePlugins[Core Plugins]:::plugin |
| 20 | + BlockchainPlugins[Blockchain Plugins]:::plugin |
| 21 | + IntegrationPlugins[Integration Plugins]:::plugin |
| 22 | + end |
| 23 | + |
| 24 | + subgraph Infrastructure |
| 25 | + direction TB |
| 26 | + DB[(Database Adapters)]:::infra |
| 27 | + CacheSys[(Cache Systems)]:::infra |
| 28 | + Storage[(File Storage)]:::infra |
| 29 | + end |
| 30 | + |
| 31 | + Clients --> Runtime |
| 32 | + Models --> Runtime |
| 33 | + Runtime --> Memory |
| 34 | + Runtime --> Cache |
| 35 | + Runtime --> Services |
| 36 | + Memory --> DB |
| 37 | + Cache --> CacheSys |
| 38 | + Services --> Storage |
| 39 | + Runtime --> Plugins |
| 40 | + |
| 41 | + %% Component Mappings |
| 42 | + click Runtime "https://github.com/elizaOS/eliza/blob/main/packages/core/src/runtime.ts" |
| 43 | + click Memory "https://github.com/elizaOS/eliza/blob/main/packages/core/src/memory.ts" |
| 44 | + click Cache "https://github.com/elizaOS/eliza/blob/main/packages/core/src/cache.ts" |
| 45 | + click DB "https://github.com/elizaOS/eliza/tree/main/packages/adapter-postgres/" |
| 46 | + click Services "https://github.com/elizaOS/eliza/tree/main/packages/core/src/services/" |
| 47 | + click Clients "https://github.com/elizaOS/eliza/tree/main/packages/client-discord/" |
| 48 | + click Models "https://github.com/elizaOS/eliza/blob/main/packages/core/src/providers.ts" |
| 49 | + click CorePlugins "https://github.com/elizaOS/eliza/tree/main/packages/plugin-bootstrap/" |
| 50 | + click BlockchainPlugins "https://github.com/elizaOS/eliza/tree/main/packages/plugin-solana/" |
| 51 | + click IntegrationPlugins "https://github.com/elizaOS/eliza/tree/main/packages/plugin-story/" |
| 52 | + |
| 53 | + %% Styling |
| 54 | + classDef core fill:#2374ab,stroke:#000,stroke-width:2px,color:#fff |
| 55 | + classDef clients fill:#57a773,stroke:#000,stroke-width:2px,color:#fff |
| 56 | + classDef models fill:#ff8c42,stroke:#000,stroke-width:2px,color:#fff |
| 57 | + classDef plugin fill:#845ec2,stroke:#000,stroke-width:2px,color:#fff |
| 58 | + classDef infra fill:#4a4e69,stroke:#000,stroke-width:2px,color:#fff |
| 59 | + |
| 60 | + %% Legend |
| 61 | + subgraph Legend |
| 62 | + direction TB |
| 63 | + L1[Core Components]:::core |
| 64 | + L2[Client Connectors]:::clients |
| 65 | + L3[Model Providers]:::models |
| 66 | + L4[Plugins]:::plugin |
| 67 | + L5[Infrastructure]:::infra |
| 68 | + end |
0 commit comments