open-webui: 0.3.5 -> 0.3.7

diff: https://github.com/open-webui/open-webui/compare/v0.3.5..v0.3.7
changelog: https://github.com/open-webui/open-webui/releases/tag/v0.3.7
(cherry picked from commit 2756131849)
This commit is contained in:
Pol Dellaiera 2024-06-28 19:50:21 +02:00 committed by shivaraj-bh
parent d1a8b44568
commit 109ec54a5c
2 changed files with 11 additions and 5 deletions

View File

@ -7,19 +7,19 @@
}: }:
let let
pname = "open-webui"; pname = "open-webui";
version = "0.3.5"; version = "0.3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "open-webui"; owner = "open-webui";
repo = "open-webui"; repo = "open-webui";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-copxy9fgHTHfF14bh9ddF4eTWx2GP2Mkw3lr+1NKKkI="; hash = "sha256-tsJILQ+CuVy8LYSixYNJAwSIZtRegrXXvGzvyf7Knd0=";
}; };
frontend = buildNpmPackage { frontend = buildNpmPackage {
inherit pname version src; inherit pname version src;
npmDepsHash = "sha256-whddW3ThC/zlttqhV3wf15roaCgp0H/BELWLs9/c5Jc="; npmDepsHash = "sha256-fB5gvC2sLfH2dJJi+CYyF7PRg+GhZDavhKgeRStaR7I=";
# Disabling `pyodide:fetch` as it downloads packages during `buildPhase` # Disabling `pyodide:fetch` as it downloads packages during `buildPhase`
# Until this is solved, running python packages from the browser will not work. # Until this is solved, running python packages from the browser will not work.
@ -63,8 +63,10 @@ python3.pkgs.buildPythonApplication rec {
dependencies = with python3.pkgs; [ dependencies = with python3.pkgs; [
aiohttp aiohttp
anthropic
apscheduler apscheduler
argon2-cffi argon2-cffi
authlib
bcrypt bcrypt
beautifulsoup4 beautifulsoup4
black black
@ -85,6 +87,7 @@ python3.pkgs.buildPythonApplication rec {
langchain-community langchain-community
langfuse langfuse
markdown markdown
openai
opencv4 opencv4
openpyxl openpyxl
pandas pandas
@ -94,6 +97,7 @@ python3.pkgs.buildPythonApplication rec {
psycopg2 psycopg2
pydub pydub
pyjwt pyjwt
pymongo
pymysql pymysql
pypandoc pypandoc
pypdf pypdf
@ -105,8 +109,10 @@ python3.pkgs.buildPythonApplication rec {
pyxlsb pyxlsb
rank-bm25 rank-bm25
rapidocr-onnxruntime rapidocr-onnxruntime
redis
requests requests
sentence-transformers sentence-transformers
sqlalchemy
unstructured unstructured
uvicorn uvicorn
validators validators

View File

@ -377,8 +377,8 @@ let
{ x86_64-linux = "sha256-VGNMf5/DgXbgsu1w5J1Pmrukw+7UO31BNU+crKVsX5k="; } { x86_64-linux = "sha256-VGNMf5/DgXbgsu1w5J1Pmrukw+7UO31BNU+crKVsX5k="; }
else else
{ {
x86_64-linux = "sha256-uOoAyMBLHPX6jzdN43b5wZV5eW0yI8sCDD7BSX2h4oQ="; x86_64-linux = "sha256-R5Bm+0GYN1zJ1aEUBW76907MxYKAIawHHJoIb1RdsKE=";
aarch64-linux = "sha256-+SnGKY9LIT1Qhu/x6Uh7sHRaAEjlc//qyKj1m4t16PA="; aarch64-linux = "sha256-P5JEmJljN1DeRA0dNkzyosKzRnJH+5SD2aWdV5JsoiY=";
} }
).${effectiveStdenv.system} or (throw "jaxlib: unsupported system: ${effectiveStdenv.system}"); ).${effectiveStdenv.system} or (throw "jaxlib: unsupported system: ${effectiveStdenv.system}");
}; };