Skip to content

Commit 87d067c

Browse files
authored
Merge pull request #348 from open-edge-platform/update-branch
fix: openwebui ollama installation issue (#905)
2 parents ae8a13a + 196b143 commit 87d067c

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

usecases/ai/microservices/ollama/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
FROM intel/oneapi-basekit:2025.1.1-0-devel-ubuntu24.04
5-
ARG IPEX_LLM_VERSION=2.3.0b20250629
65

76
RUN apt-get update && apt-get install -y --no-install-recommends software-properties-common
87
RUN add-apt-repository -y ppa:kobuk-team/intel-graphics
@@ -27,8 +26,8 @@ USER ubuntu
2726
ENV PATH="/opt/intel/llm-app/.venv/bin:$PATH"
2827
ENV LD_LIBRARY_PATH=".:$LD_LIBRARY_PATH"
2928
RUN python3 -m pip install --upgrade pip \
30-
&& python3 -m pip install --pre --upgrade ipex-llm[cpp]==${IPEX_LLM_VERSION} \
31-
&& python3 -m pip install --upgrade accelerate==0.33.0 \
29+
&& python3 -m pip install --pre ipex_llm[cpp] --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/us/ \
30+
&& python3 -m pip install accelerate==0.33.0 \
3231
&& init-ollama
3332

3433
HEALTHCHECK --interval=60s --timeout=5m --start-period=5s --retries=5 \

usecases/ai/microservices/text-to-speech/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
fastapi[all]
1+
fastapi>=0.115.0
22
uvicorn
33
pydantic<2
44
soxr

usecases/ai/openwebui-ollama/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Install the latest [Ubuntu* 24.04 LTS Desktop](https://releases.ubuntu.com/noble
2121
Docker and docker compose should be setup before running the commands below. Refer to [here](https://docs.docker.com/engine/install/) to setup docker.
2222

2323
### 3. Install necessary GPU drivers.
24-
- Refer to [here](../../../README.md#-5-minute-quick-start) to setup GPU drivers
24+
- Refer to [here](../../../README.md#5-minute-quick-start) to setup GPU drivers
2525

2626
## Application ports
2727
Please ensure that you have these ports available before running the applications.
@@ -72,7 +72,8 @@ docker compose up -d
7272
![Alt Text](./assets/signup.png)
7373

7474
### 5. Configure OpenAI, TTS and STT API Link
75-
* Open the Admin Panel from the top left corner.
75+
* From the bottom left corner, click account button.
76+
* Click on `Admin panel`
7677
* Click on `Settings`
7778
* Replace OpenAI API link:
7879
* Click on `Connections`
113 KB
Loading

0 commit comments

Comments
 (0)