You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DocSum/README.md
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -92,6 +92,24 @@ Install Helm (version >= 3.15) first. Refer to the [Helm Installation Guide](htt
92
92
93
93
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.
94
94
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
+
```
95
113
## Consume Document Summarization Service
96
114
97
115
Two ways of consuming Document Summarization Service:
0 commit comments