Skip to content

Commit 83dacff

Browse files
committed
EC-RAG new feature update
Signed-off-by: Yongbozzz <yongbo.zhu@intel.com>
1 parent 15b0d46 commit 83dacff

106 files changed

Lines changed: 12157 additions & 2632 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

EdgeCraftRAG/Dockerfile.server

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,18 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
44
RUN apt-get update && apt-get install -y gnupg2 wget git
55
RUN apt-get remove -y libze-intel-gpu1 libigc1 libigdfcl1 libze-dev || true; \
66
apt-get update; \
7-
apt-get install -y curl
7+
apt-get install -y curl jq
88
RUN curl -sL 'https://keyserver.ubuntu.com/pks/lookup?fingerprint=on&op=get&search=0x0C0E6AF955CE463C03FC51574D098D70AFBE5E1F' | tee /etc/apt/trusted.gpg.d/driver.asc
99
RUN echo -e "Types: deb\nURIs: https://ppa.launchpadcontent.net/kobuk-team/intel-graphics/ubuntu/\nSuites: questing\nComponents: main\nSigned-By: /etc/apt/trusted.gpg.d/driver.asc" > /etc/apt/sources.list.d/driver.sources
10-
RUN apt-get update && apt-get install -y libze-intel-gpu1 libze1 intel-metrics-discovery intel-opencl-icd clinfo intel-gsc && apt-get install -y libze-intel-gpu1 libze1 intel-metrics-discovery intel-opencl-icd clinfo intel-gsc && apt-get install -y libze-dev intel-ocloc libze-intel-gpu-raytracing
11-
10+
RUN apt-get update && apt-get install -y libze-intel-gpu1 libze1 intel-metrics-discovery intel-opencl-icd clinfo intel-gsc && apt-get install -y libze-intel-gpu1 libze1 intel-metrics-discovery intel-opencl-icd clinfo intel-gsc && apt-get install -y libze-dev intel-ocloc libze-intel-gpu-raytracing libglib2.0-0 libgl1 libmagic-dev poppler-utils tesseract-ocr pandoc
11+
RUN url=$(curl -s https://api.github.com/repos/intel/linux-npu-driver/releases/latest \
12+
| jq -r '.assets[] | select(.name | test("ubuntu2404\\.tar\\.gz$")) | .browser_download_url' \
13+
| head -n 1) \
14+
&& wget -O /tmp/linux-npu-driver.tar.gz "$url" \
15+
&& tar -xf /tmp/linux-npu-driver.tar.gz -C /tmp \
16+
&& dpkg -i /tmp/*.deb || apt-get install -f -y \
17+
&& rm -rf /tmp/linux-npu-driver*
18+
1219
RUN useradd -m -s /bin/bash user && \
1320
mkdir -p /home/user && \
1421
chown -R user /home/user/

EdgeCraftRAG/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ quality and performance.
77

88
## What's New
99

10-
1. Support decouple operation for pipeline and knowledge base
11-
2. Optimize Agentic workflow user experience
12-
3. User Guide enhancement
10+
1. Support Agent component and enable deep_search agent
11+
2. Optimize pipeline execution performance with asynchronous api
12+
3. Support session list display in UI
13+
4. Support vllm-based embedding service
1314

1415
## Table of contents
1516

-144 KB
Loading

0 commit comments

Comments
 (0)