Skip to content

Latest commit

 

History

History
127 lines (79 loc) · 4.97 KB

README.md

File metadata and controls

127 lines (79 loc) · 4.97 KB

Document Summarization Application

In a world where data, information, and legal complexities are prevalent, the volume of legal documents is growing rapidly. Law firms, legal professionals, and businesses are dealing with an ever-increasing number of legal texts, including contracts, court rulings, statutes, and regulations. These documents contain important insights, but understanding them can be overwhelming. This is where the demand for legal document summarization comes in.

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, and other types of text. Suppose you have a set of documents (PDFs, Notion pages, customer questions, 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 on Intel Xeon and Gaudi2 processors.

The architecture for document summarization will be illustrated/described below:

Architecture

Workflow

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, please follow the instructions below.

Currently we support two ways of deploying Document Summarization services with docker compose:

  1. Start services using the docker image on docker hub:
docker pull opea/docsum:latest
  1. Start services using the docker images built from source: Guide

Setup Environment Variable

To set up environment variables for deploying Document Summarization services, follow these steps:

  1. 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"
  1. 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"
  1. Set up other environment variables:
source ./docker/set_env.sh

Deploy using Docker

Deploy on Gaudi

Please find corresponding docker_compose.yaml.

cd GenAIExamples/DocSum/docker/gaudi/
docker compose -f docker_compose.yaml up -d

Notice: Currently only the Habana Driver 1.16.x is supported for Gaudi.

Please refer to the Gaudi Guide to build docker images from source.

Deploy on Xeon

Please find corresponding docker_compose.yaml.

cd GenAIExamples/DocSum/docker/xeon/
docker compose -f docker_compose.yaml up -d

Refer to the Xeon Guide for more instructions on building docker images from source.

Deploy using Kubernetes with GMC

Please refer to Kubernetes deployment

Deploy using Kubernetes without GMC

Please refer to Kubernetes deployment

Deploy DocSum into Kubernetes using Helm Chart

Install Helm (version >= 3.15) first. Please 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.

Consume Document Summarization Service

Two ways of consuming Document Summarization Service:

  1. Use cURL command on terminal
curl http://${host_ip}:8888/v1/docsum \
    -H "Content-Type: application/json" \
    -d '{"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."}'
  1. 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

  1. If you get errors like "Access Denied", please validate micro service first. A simple example:
http_proxy=""
curl http://${your_ip}:8008/generate \
  -X POST \
  -d '{"inputs":"What is Deep Learning?","parameters":{"max_new_tokens":17, "do_sample": true}}' \
  -H 'Content-Type: application/json'
  1. (Docker only) If all microservices work well, please check the port ${host_ip}:8888, the port may be allocated by other users, you can modify the docker_compose.yaml.

  2. (Docker only) If you get errors like "The container name is in use", please change container name in docker_compose.yaml.