Skip to content

Commit 343d614

Browse files
authored
[Doc]Add a micro/mega service WorkFlow for DocSum (#537)
* Update README.md added a micro/megaservice workflow for Doc Sum Signed-off-by: Tsai, Louie <[email protected]> * Update README.md Signed-off-by: Tsai, Louie <[email protected]> * fix format issue Signed-off-by: Tsai, Louie <[email protected]> --------- Signed-off-by: Tsai, Louie <[email protected]>
1 parent 87617e7 commit 343d614

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

DocSum/README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,29 @@ Install Helm (version >= 3.15) first. Refer to the [Helm Installation Guide](htt
9090

9191
Refer to the [DocSum helm chart](https://github.com/opea-project/GenAIInfra/tree/main/helm-charts/docsum) for instructions on deploying DocSum into Kubernetes on Xeon & Gaudi.
9292

93+
### Workflow of the deployed Document Summarization Service
94+
95+
The workflow of the Document Summarization Service, from user's input query to the application's output response, is as follows:
96+
97+
```mermaid
98+
flowchart LR
99+
subgraph DocSum
100+
direction LR
101+
A[User] <--> |Input query| B[DocSum Gateway]
102+
B <--> |Post| Megaservice
103+
subgraph Megaservice["Megaservice"]
104+
direction TB
105+
C([ Microservice : llm-docsum-tgi <br>9000]) -. Post .-> D{{TGI Service<br>8008}}
106+
end
107+
Megaservice --> |Output| E[Response]
108+
end
109+
subgraph Legend
110+
X([Micsrservice])
111+
Y{{Service from industry peers}}
112+
Z[Gateway]
113+
end
114+
```
115+
93116
## Consume Document Summarization Service
94117

95118
Two ways of consuming Document Summarization Service:

0 commit comments

Comments
 (0)