Skip to content

Commit

Permalink
Update diagram
Browse files Browse the repository at this point in the history
  • Loading branch information
databyjp committed Nov 7, 2024
1 parent 9c52fdd commit 69255f9
Showing 1 changed file with 13 additions and 15 deletions.
28 changes: 13 additions & 15 deletions developers/weaviate/model-providers/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,31 +74,29 @@ This is done by providing the source data to the integration provider, which the
flowchart LR
%% Style definitions
classDef systemBox fill:#f7fafc,stroke:#3182ce,stroke-width:2px,color:#2d3748
classDef weaviateBox fill:#f7fafc,stroke:#2d3748,stroke-width:2px,color:#2d3748
classDef providerBox fill:#f7fafc,stroke:#48bb78,stroke-width:2px,color:#2d3748
classDef systemBox fill:#f7fafc,stroke:#3182ce,stroke-width:2px,color:#2d3748,padding:10px
classDef weaviateBox fill:#f7fafc,stroke:#2d3748,stroke-width:2px,color:#2d3748,padding:10px
classDef providerBox fill:#f7fafc,stroke:#48bb78,stroke-width:2px,color:#2d3748,padding:10px
classDef component fill:white,stroke:#718096,stroke-width:1.5px,color:#2d3748,rx:6
%% User System
subgraph user["User System"]
direction TB
data["📄 Data Objects"]
%% Model Provider section (leftmost)
subgraph provider["Model Provider"]
inference["🤖 Inference API /\nLocal Model"]
end
%% Weaviate
%% Weaviate section (middle)
subgraph weaviate["Weaviate"]
direction TB
core["⚡️ Data & Vector store"]
vectorizer["🔌 Model Provider Integration"]
core["⚡️ Data & Vector store"]
end
%% Model Provider
subgraph provider["Model Provider"]
inference["🤖 Inference API /\n Local Model"]
%% User System (bottom)
subgraph user["User System"]
data["📄 Data Objects"]
end
%% Connections with numbered steps
user -->|"1. Insert objects"| weaviate
%% Connections
data -->|"1. Insert objects"| core
core -->|"2. Request vector"| vectorizer
vectorizer -->|"3. Request vector"| inference
inference -->|"4. Return vector"| vectorizer
Expand Down

0 comments on commit 69255f9

Please sign in to comment.