Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Doc]Add a micro/mega service WorkFlow for DocSum #537

Merged
merged 3 commits into from
Aug 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions DocSum/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,29 @@ Install Helm (version >= 3.15) first. Refer to the [Helm Installation Guide](htt

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.

### Workflow of the deployed Document Summarization Service

The workflow of the Document Summarization Service, from user's input query to the application's output response, is as follows:

```mermaid
flowchart LR
subgraph DocSum
direction LR
A[User] <--> |Input query| B[DocSum Gateway]
B <--> |Post| Megaservice
subgraph Megaservice["Megaservice"]
direction TB
C([ Microservice : llm-docsum-tgi <br>9000]) -. Post .-> D{{TGI Service<br>8008}}
end
Megaservice --> |Output| E[Response]
end
subgraph Legend
X([Micsrservice])
Y{{Service from industry peers}}
Z[Gateway]
end
```

## Consume Document Summarization Service

Two ways of consuming Document Summarization Service:
Expand Down