Skip to content
Open
Show file tree
Hide file tree
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
13 changes: 10 additions & 3 deletions EdgeCraftRAG/Dockerfile.server
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,18 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN apt-get update && apt-get install -y gnupg2 wget git
RUN apt-get remove -y libze-intel-gpu1 libigc1 libigdfcl1 libze-dev || true; \
apt-get update; \
apt-get install -y curl
apt-get install -y curl jq
RUN curl -sL 'https://keyserver.ubuntu.com/pks/lookup?fingerprint=on&op=get&search=0x0C0E6AF955CE463C03FC51574D098D70AFBE5E1F' | tee /etc/apt/trusted.gpg.d/driver.asc
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
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

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
RUN url=$(curl -s https://api.github.com/repos/intel/linux-npu-driver/releases/latest \
| jq -r '.assets[] | select(.name | test("ubuntu2404\\.tar\\.gz$")) | .browser_download_url' \
| head -n 1) \
&& wget -O /tmp/linux-npu-driver.tar.gz "$url" \
&& tar -xf /tmp/linux-npu-driver.tar.gz -C /tmp \
&& dpkg -i /tmp/*.deb || apt-get install -f -y \
&& rm -rf /tmp/linux-npu-driver*
Comment on lines 9 to +17

RUN useradd -m -s /bin/bash user && \
mkdir -p /home/user && \
chown -R user /home/user/
Expand Down
7 changes: 4 additions & 3 deletions EdgeCraftRAG/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ quality and performance.

## What's New

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

## Table of contents

Expand Down
Binary file modified EdgeCraftRAG/assets/img/Explore_Edge_Craft_RAG_02.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading