Skip to content

Commit 3f6ef99

Browse files
authored
Update/next (#2)
* Bump version from upstream * add missign dependencies for RAG OCR * fix path for png files and bump version th the latest * Update manifest and instructions
1 parent 20d5c51 commit 3f6ef99

File tree

4 files changed

+14
-12
lines changed

4 files changed

+14
-12
lines changed

Dockerfile

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
FROM ghcr.io/open-webui/open-webui:git-90503be as gui
2-
FROM ollama/ollama:0.1.37 as ollama
1+
FROM ghcr.io/open-webui/open-webui:0.3.8 as gui
2+
FROM ollama/ollama:0.2.2 as ollama
33

44
COPY --from=gui /app /app
55
# COPY --from=gui /root/.cache/chroma/onnx_models/all-MiniLM-L6-v2/onnx /root/.cache/chroma/onnx_models/all-MiniLM-L6-v2/onnx
66

77
WORKDIR /app/backend
88

99
RUN apt-get update && \
10-
apt-get install -y --no-install-recommends python3.11 python3-pip pandoc netcat-openbsd curl && \
10+
apt-get install -y --no-install-recommends python3.11 python3-pip pandoc netcat-openbsd curl ffmpeg libsm6 libxext6 && \
1111
rm -rf /var/lib/apt/lists/* && \
1212
mkdir -p /root/.cache/chroma/onnx_models/all-MiniLM-L6-v2 && \
1313
chown root:root -R /root/.cache/chroma && \
@@ -18,8 +18,10 @@ RUN apt-get update && \
1818

1919
ADD ./docker_entrypoint.sh /usr/local/bin/docker_entrypoint.sh
2020
RUN chmod a+x /usr/local/bin/docker_entrypoint.sh
21-
COPY icon.png /app/build/favicon.png
22-
COPY icon.png /app/build/logo.svg
21+
COPY icon.png /app/build/static/favicon.png
22+
COPY icon.png /app/build/static/splash.png
23+
COPY icon.png /app/build/static/splash-dark.png
24+
2325
RUN sed -i 's/WEBUI_NAME != "Open WebUI"/WEBUI_NAME != "FreeGPT-2"/g' /app/backend/config.py
2426
RUN sed -i 's#WEBUI_FAVICON_URL = "https://openwebui.com/favicon.png"#WEBUI_FAVICON_URL = "/static/favicon.png"#g' /app/backend/config.py
2527
RUN sed -i 's/flex w-full justify-between items-center/flex w-full justify-between items-center hidden/g' /app/build/_app/immutable/nodes/2.*.js

instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
1. Click `Launch UI` to access your personal FreeGPT-2 website.
44
2. Sign up by creating a user account.
5-
3. Navigate to Settings > Models. Here, you will find an entry box titled `"Pull a model from Ollama.com"`. In this box, you can type the tag of the model you want to use. **We recommend starting with the `mistral:7b` model.**
5+
3. Open the Admin Panel and navigate to Settings > Models. Here, you will find an entry box titled `"Pull a model from Ollama.com"`. In this box, you can type the tag of the model you want to use. **We recommend starting with the `mistral:7b` model.**
66
4. After entering the model tag (e.g., `mistral:7b`), click the download button on the right. The software will automatically download the model.
77
5. To discover other compatible models and their tags, visit the [Ollama Library](https://ollama.com/library). This page provides information about all the supported models. You can explore these models and choose the one that best suits your needs.
88
6. Please note that the size of the model you choose should not exceed the available RAM memory of your server. Using a model larger than your available memory could lead to performance issues or crashes.

manifest.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
id: free-gpt
22
title: "FreeGPT-2"
3-
version: 2.37.124
3+
version: 2.202.038
44
release-notes: |
55
- Ollama update to the latest version
66
- Updated UI to use latest version of Open WebUI
7-
- Added support for llama3 and many llama3 based models
8-
- Additional UI Language Support including Polish and Turkish
9-
- Improved Admin Panel
10-
- And many more ...
7+
- Added support for GLM-4, CodeGeeX4 and Gemma 2 models.
8+
- 🎙️ Hands-Free Voice Call Feature: Initiate voice calls without needing to use your hands, making interactions more seamless.
9+
- 🎛️ Enhanced UI for Voice Recording: Improved user interface for the voice recording feature, making it more intuitive and user-friendly.
10+
- And many, many more ...
1111
license: MIT
1212
wrapper-repo: "https://github.com/Start9Labs/freegpt2-startos"
1313
upstream-repo: "https://github.com/Start9Labs/freegpt2-startos"

scripts/procedures/migrations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import { compat, types as T } from "../deps.ts";
22

33
export const migration: T.ExpectedExports.migration = compat.migrations
4-
.fromMapping({}, "2.37.124" );
4+
.fromMapping({}, "2.202.038" );

0 commit comments

Comments
 (0)