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

View File

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