Document Summarization Application¶
Large Language Models (LLMs) have revolutionized the way we interact with text. These models can be used to create summaries of news articles, research papers, technical documents, legal documents, multimedia documents, and other types of documents. Suppose you have a set of documents (PDFs, Notion pages, customer questions, multimedia files, etc.) and you want to summarize the content. In this example use case, we utilize LangChain to implement summarization strategies and facilitate LLM inference using Text Generation Inference.
Deploy Document Summarization Service¶
The Document Summarization service can be effortlessly deployed on either Intel Gaudi2 or Intel Xeon Scalable Processors. Based on whether you want to use Docker or Kubernetes, follow the instructions below. Currently we support deploying Document Summarization services with docker compose.
Required Models¶
Default model is “Intel/neural-chat-7b-v3-3”. Change “LLM_MODEL_ID” environment variable in commands below if you want to use another model.
export LLM_MODEL_ID="Intel/neural-chat-7b-v3-3"
When using gated models, you also need to provide HuggingFace token to “HUGGINGFACEHUB_API_TOKEN” environment variable.
Setup Environment Variable¶
To set up environment variables for deploying Document Summarization services, follow these steps:
Set the required environment variables:
# Example: host_ip="192.168.1.1" export host_ip="External_Public_IP" # Example: no_proxy="localhost, 127.0.0.1, 192.168.1.1" export no_proxy="Your_No_Proxy" export HUGGINGFACEHUB_API_TOKEN="Your_Huggingface_API_Token"
If you are in a proxy environment, also set the proxy-related environment variables:
export http_proxy="Your_HTTP_Proxy" export https_proxy="Your_HTTPs_Proxy"
Set up other environment variables:
source GenAIExamples/DocSum/docker_compose/set_env.sh
Deploy using Docker¶
Deploy on Gaudi¶
Follow the instructions provided in the Gaudi Guide to build Docker images from source. Once the images are built, run the following command to start the services:
cd GenAIExamples/DocSum/docker_compose/intel/hpu/gaudi/
docker compose -f compose.yaml up -d
Find the corresponding compose.yaml.
Notice: Currently only the Habana Driver 1.16.x is supported for Gaudi.
Deploy on Xeon¶
Follow the instructions provided in the Xeon Guide to build Docker images from source. Once the images are built, run the following command to start the services:
cd GenAIExamples/DocSum/docker_compose/intel/cpu/xeon/
docker compose -f compose.yaml up -d
Find the corresponding compose.yaml.
Deploy using Kubernetes with GMC¶
Refer to Kubernetes deployment
Deploy using Kubernetes without GMC¶
Refer to Kubernetes deployment
Deploy DocSum into Kubernetes using Helm Chart¶
Install Helm (version >= 3.15) first. Refer to the Helm Installation Guide for more information.
Refer to the DocSum helm chart for instructions on deploying DocSum into Kubernetes on Xeon & Gaudi.
Workflow of the deployed Document Summarization Service¶
The DocSum example is implemented using the component-level microservices defined in GenAIComps. The flow chart below shows the information flow between different microservices for this example.
Consume Document Summarization Service¶
Two ways of consuming Document Summarization Service:
Use cURL command on terminal
Text:
curl -X POST http://${host_ip}:8888/v1/docsum \ -H "Content-Type: application/json" \ -d '{"type": "text", "messages": "Text Embeddings Inference (TEI) is a toolkit for deploying and serving open source text embeddings and sequence classification models. TEI enables high-performance extraction for the most popular models, including FlagEmbedding, Ember, GTE and E5."}' # Use English mode (default). curl http://${host_ip}:8888/v1/docsum \ -H "Content-Type: multipart/form-data" \ -F "type=text" \ -F "messages=Text Embeddings Inference (TEI) is a toolkit for deploying and serving open source text embeddings and sequence classification models. TEI enables high-performance extraction for the most popular models, including FlagEmbedding, Ember, GTE and E5." \ -F "max_tokens=32" \ -F "language=en" \ -F "stream=true" # Use Chinese mode. curl http://${host_ip}:8888/v1/docsum \ -H "Content-Type: multipart/form-data" \ -F "type=text" \ -F "messages=2024年9月26日,北京——今日,英特尔正式发布英特尔® 至强® 6性能核处理器(代号Granite Rapids),为AI、数据分析、科学计算等计算密集型业务提供卓越性能。" \ -F "max_tokens=32" \ -F "language=zh" \ -F "stream=true" # Upload file curl http://${host_ip}:8888/v1/docsum \ -H "Content-Type: multipart/form-data" \ -F "type=text" \ -F "messages=" \ -F "files=@/path to your file (.txt, .docx, .pdf)" \ -F "max_tokens=32" \ -F "language=en" \ -F "stream=true"
Audio and Video file uploads are not supported in docsum with curl request, please use the Gradio-UI.
Audio:
curl -X POST http://${host_ip}:8888/v1/docsum \ -H "Content-Type: application/json" \ -d '{"type": "audio", "messages": "UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA"}' curl http://${host_ip}:8888/v1/docsum \ -H "Content-Type: multipart/form-data" \ -F "type=audio" \ -F "messages=UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA" \ -F "max_tokens=32" \ -F "language=en" \ -F "stream=true"
Video:
curl -X POST http://${host_ip}:8888/v1/docsum \ -H "Content-Type: application/json" \ -d '{"type": "video", "messages": "convert your video to base64 data type"}' curl http://${host_ip}:8888/v1/docsum \ -H "Content-Type: multipart/form-data" \ -F "type=video" \ -F "messages=convert your video to base64 data type" \ -F "max_tokens=32" \ -F "language=en" \ -F "stream=true"
Access via frontend
To access the frontend, open the following URL in your browser: http://{host_ip}:5173.
By default, the UI runs on port 5173 internally.
Troubleshooting¶
If you get errors like “Access Denied”, validate micro service first. A simple example:
curl http://${host_ip}:8008/generate \ -X POST \ -d '{"inputs":"What is Deep Learning?","parameters":{"max_tokens":17, "do_sample": true}}' \ -H 'Content-Type: application/json'
(Docker only) If all microservices work well, check the port ${host_ip}:8888, the port may be allocated by other users, you can modify the
compose.yaml
.(Docker only) If you get errors like “The container name is in use”, change container name in
compose.yaml
.