@@ -7,11 +7,9 @@ quality and performance.
77
88## What's New in this release?
99
10- - A sleek new UI with enhanced user experience, built on Vue and Ant Design
11- - Support concurrent multi-requests handling on vLLM inference backend
12- - Support pipeline configuration through json file
13- - Support system prompt modification through API
14- - Fixed known issues in EC-RAG UI and server
10+ - Chat history support for multi-session chatqna
11+ - Knowledge base support for EC-RAG
12+ - Multi-Arc support for multiple LLM inference serving engine
1513
1614## Quick Start Guide
1715
@@ -76,6 +74,7 @@ export RENDERGROUPID=$(getent group render | cut -d: -f3)
7674# Here is the example:
7775pip install --upgrade --upgrade-strategy eager " optimum[openvino]"
7876
77+ # If below optimum-cli commands show errors, please set transformers==4.49.0 to fix: pip install transformers==4.49.0
7978optimum-cli export openvino -m BAAI/bge-small-en-v1.5 ${MODEL_PATH} /BAAI/bge-small-en-v1.5 --task sentence-similarity
8079optimum-cli export openvino -m BAAI/bge-reranker-large ${MODEL_PATH} /BAAI/bge-reranker-large --task text-classification
8180optimum-cli export openvino -m Qwen/Qwen2-7B-Instruct ${MODEL_PATH} /Qwen/Qwen2-7B-Instruct/INT4_compressed_weights --weight-format int4
@@ -149,6 +148,15 @@ export SELECTED_XPU_0=<which GPU to select to run for container 0>
149148export SELECTED_XPU_1=< which GPU to select to run for container 1>
150149` ` `
151150
151+ ` ` ` bash
152+ # Below are the extra env you can set for vllm
153+ export MAX_NUM_SEQS=< MAX_NUM_SEQS value>
154+ export MAX_NUM_BATCHED_TOKENS=< MAX_NUM_BATCHED_TOKENS value>
155+ export MAX_MODEL_LEN=< MAX_MODEL_LEN value>
156+ export LOAD_IN_LOW_BIT=< the weight type value> # expected: sym_int4, asym_int4, sym_int5, asym_int5 or sym_int8
157+ export CCL_DG2_USM=< CCL_DG2_USM value> # Needed on Core to enable USM (Shared Memory GPUDirect). Xeon supports P2P and doesn't need this.
158+ ` ` `
159+
152160start with compose_vllm_multi-arc.yaml
153161
154162` ` ` bash
0 commit comments