We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 641f081 commit bad0612Copy full SHA for bad0612
README.md
@@ -47,13 +47,13 @@ graph TD
47
G[...]
48
end
49
50
- A -->|"(1) Score(prompt, pods)"| B
51
- B -->|"(2) Query Index"| C
52
- B -->|"(3) Return Scores"| A
+ A--"(1) Score(prompt, pods)"-->B
+ B--"(2) Query Index"-->C
+ B--"(3) Return Scores"-->A
53
54
- E -->|"(A) Emit KVEvents"| D
55
- F -->|"(A) Emit KVEvents"| D
56
- D -->|"(B) Update Index"| C
+ E--"(A) Emit KVEvents"-->D
+ F--"(A) Emit KVEvents"-->D
+ D--"(B) Update Index"-->C
57
```
58
**Read Path:**
59
- (1) **Scoring Request**: A scheduler asks the **KVCache Indexer** to score a set of pods for a given prompt
0 commit comments