Skip to content

Commit 40f9786

Browse files
committed
Update README.md
added a micro/megaservice workflow for Doc Sum
1 parent 7dd9952 commit 40f9786

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

DocSum/README.md

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

9393
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.
9494

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

97115
Two ways of consuming Document Summarization Service:

0 commit comments

Comments
 (0)