2024-05-14 03:53:46 +00:00
|
|
|
[project]
|
|
|
|
name = "open-webui"
|
2024-08-14 15:13:37 +00:00
|
|
|
description = "Open WebUI"
|
2024-05-14 03:53:46 +00:00
|
|
|
authors = [
|
2024-05-22 03:39:37 +00:00
|
|
|
{ name = "Timothy Jaeryang Baek", email = "tim@openwebui.com" }
|
2024-05-14 03:53:46 +00:00
|
|
|
]
|
|
|
|
license = { file = "LICENSE" }
|
|
|
|
dependencies = [
|
2024-05-22 08:50:22 +00:00
|
|
|
"fastapi==0.111.0",
|
2024-08-21 13:47:03 +00:00
|
|
|
"uvicorn[standard]==0.30.6",
|
2024-10-07 04:06:47 +00:00
|
|
|
"pydantic==2.9.2",
|
2024-05-14 03:53:46 +00:00
|
|
|
"python-multipart==0.0.9",
|
|
|
|
|
|
|
|
"Flask==3.0.3",
|
2024-09-03 15:32:52 +00:00
|
|
|
"Flask-Cors==5.0.0",
|
2024-05-14 03:53:46 +00:00
|
|
|
|
2024-08-02 22:47:05 +00:00
|
|
|
"python-socketio==5.11.3",
|
2024-05-14 03:53:46 +00:00
|
|
|
"python-jose==3.3.0",
|
|
|
|
"passlib[bcrypt]==1.7.4",
|
|
|
|
|
2024-08-02 22:47:05 +00:00
|
|
|
"requests==2.32.3",
|
2024-10-07 04:06:47 +00:00
|
|
|
"aiohttp==3.10.8",
|
2024-10-12 09:42:31 +00:00
|
|
|
"async-timeout",
|
2024-08-02 22:47:05 +00:00
|
|
|
|
2024-08-21 13:47:03 +00:00
|
|
|
"sqlalchemy==2.0.32",
|
2024-08-02 22:47:05 +00:00
|
|
|
"alembic==1.13.2",
|
|
|
|
"peewee==3.17.6",
|
2024-05-14 03:53:46 +00:00
|
|
|
"peewee-migrate==1.12.2",
|
|
|
|
"psycopg2-binary==2.9.9",
|
2024-07-24 17:41:24 +00:00
|
|
|
"PyMySQL==1.1.1",
|
2024-08-21 13:47:03 +00:00
|
|
|
"bcrypt==4.2.0",
|
2024-05-14 03:53:46 +00:00
|
|
|
|
2024-08-02 22:47:05 +00:00
|
|
|
"pymongo",
|
|
|
|
"redis",
|
2024-08-21 13:47:03 +00:00
|
|
|
"boto3==1.35.0",
|
2024-05-14 03:53:46 +00:00
|
|
|
|
|
|
|
"argon2-cffi==23.1.0",
|
|
|
|
"APScheduler==3.10.4",
|
2024-08-02 22:47:05 +00:00
|
|
|
|
|
|
|
"openai",
|
|
|
|
"anthropic",
|
2024-08-07 13:06:59 +00:00
|
|
|
"google-generativeai==0.7.2",
|
2024-08-02 22:47:05 +00:00
|
|
|
"tiktoken",
|
2024-05-14 03:53:46 +00:00
|
|
|
|
2024-09-04 14:54:48 +00:00
|
|
|
"langchain==0.2.15",
|
2024-08-22 12:38:05 +00:00
|
|
|
"langchain-community==0.2.12",
|
2024-10-07 04:06:47 +00:00
|
|
|
"langchain-chroma==0.1.4",
|
2024-05-14 03:53:46 +00:00
|
|
|
|
|
|
|
"fake-useragent==1.5.1",
|
2024-09-26 19:33:37 +00:00
|
|
|
"chromadb==0.5.9",
|
|
|
|
"pymilvus==2.4.7",
|
2024-09-16 14:19:40 +00:00
|
|
|
|
2024-10-13 01:32:04 +00:00
|
|
|
"sentence-transformers==3.2.0",
|
2024-09-16 14:19:40 +00:00
|
|
|
"colbert-ai==0.2.21",
|
2024-09-19 16:47:02 +00:00
|
|
|
"einops==0.8.0",
|
2024-09-28 00:49:18 +00:00
|
|
|
|
|
|
|
"ftfy==6.2.3",
|
2024-08-05 17:29:32 +00:00
|
|
|
"pypdf==4.3.1",
|
2024-10-13 06:07:36 +00:00
|
|
|
"xhtml2pdf==0.2.16",
|
|
|
|
"pymdown-extensions==10.11.2",
|
2024-05-14 03:53:46 +00:00
|
|
|
"docx2txt==0.8",
|
2024-08-05 17:29:32 +00:00
|
|
|
"python-pptx==1.0.0",
|
2024-09-04 14:54:48 +00:00
|
|
|
"unstructured==0.15.9",
|
2024-08-26 10:08:55 +00:00
|
|
|
"nltk==3.9.1",
|
2024-08-22 12:38:05 +00:00
|
|
|
"Markdown==3.7",
|
2024-05-14 03:53:46 +00:00
|
|
|
"pypandoc==1.13",
|
2024-10-07 04:06:47 +00:00
|
|
|
"pandas==2.2.3",
|
2024-08-02 22:47:05 +00:00
|
|
|
"openpyxl==3.1.5",
|
2024-05-14 03:53:46 +00:00
|
|
|
"pyxlsb==1.0.10",
|
|
|
|
"xlrd==2.0.1",
|
2024-08-05 17:29:32 +00:00
|
|
|
"validators==0.33.0",
|
2024-08-02 22:47:05 +00:00
|
|
|
"psutil",
|
2024-05-14 03:53:46 +00:00
|
|
|
|
2024-08-02 22:47:05 +00:00
|
|
|
"opencv-python-headless==4.10.0.84",
|
|
|
|
"rapidocr-onnxruntime==1.3.24",
|
2024-05-14 03:53:46 +00:00
|
|
|
|
2024-05-22 08:50:22 +00:00
|
|
|
"fpdf2==2.7.9",
|
2024-05-14 03:53:46 +00:00
|
|
|
"rank-bm25==0.2.2",
|
|
|
|
|
2024-08-21 13:47:03 +00:00
|
|
|
"faster-whisper==1.0.3",
|
2024-05-14 03:53:46 +00:00
|
|
|
|
2024-08-14 15:13:37 +00:00
|
|
|
"PyJWT[crypto]==2.9.0",
|
2024-09-04 14:54:48 +00:00
|
|
|
"authlib==1.3.2",
|
2024-05-14 03:53:46 +00:00
|
|
|
|
2024-08-05 17:29:32 +00:00
|
|
|
"black==24.8.0",
|
2024-08-22 12:38:05 +00:00
|
|
|
"langfuse==2.44.0",
|
2024-05-14 03:53:46 +00:00
|
|
|
"youtube-transcript-api==0.6.2",
|
2024-05-22 08:50:22 +00:00
|
|
|
"pytube==15.0.0",
|
2024-08-02 22:47:05 +00:00
|
|
|
|
2024-06-12 02:14:47 +00:00
|
|
|
"extract_msg",
|
|
|
|
"pydub",
|
2024-10-07 04:06:47 +00:00
|
|
|
"duckduckgo-search~=6.2.13",
|
2024-06-12 02:14:47 +00:00
|
|
|
|
2024-08-02 22:47:05 +00:00
|
|
|
"docker~=7.1.0",
|
2024-10-07 04:06:47 +00:00
|
|
|
"pytest~=8.3.2",
|
2024-10-16 17:31:42 +00:00
|
|
|
"pytest-docker~=3.1.1",
|
|
|
|
|
2024-10-17 07:55:53 +00:00
|
|
|
"googleapis-common-protos==1.63.2"
|
2024-05-14 03:53:46 +00:00
|
|
|
]
|
|
|
|
readme = "README.md"
|
|
|
|
requires-python = ">= 3.11, < 3.12.0a1"
|
|
|
|
dynamic = ["version"]
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
2024-05-20 03:12:03 +00:00
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.11",
|
2024-05-14 03:53:46 +00:00
|
|
|
"Topic :: Communications :: Chat",
|
|
|
|
"Topic :: Multimedia",
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
open-webui = "open_webui:app"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[tool.rye]
|
|
|
|
managed = true
|
|
|
|
dev-dependencies = []
|
|
|
|
|
|
|
|
[tool.hatch.metadata]
|
|
|
|
allow-direct-references = true
|
|
|
|
|
|
|
|
[tool.hatch.version]
|
|
|
|
path = "package.json"
|
|
|
|
pattern = '"version":\s*"(?P<version>[^"]+)"'
|
|
|
|
|
2024-05-20 03:12:03 +00:00
|
|
|
[tool.hatch.build.hooks.custom] # keep this for reading hooks from `hatch_build.py`
|
|
|
|
|
2024-05-14 03:53:46 +00:00
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
sources = ["backend"]
|
|
|
|
exclude = [
|
|
|
|
".dockerignore",
|
|
|
|
".gitignore",
|
|
|
|
".webui_secret_key",
|
|
|
|
"dev.sh",
|
|
|
|
"requirements.txt",
|
|
|
|
"start.sh",
|
|
|
|
"start_windows.bat",
|
2024-05-20 03:12:03 +00:00
|
|
|
"webui.db",
|
|
|
|
"chroma.sqlite3",
|
2024-05-14 03:53:46 +00:00
|
|
|
]
|
2024-05-20 03:12:03 +00:00
|
|
|
force-include = { "CHANGELOG.md" = "open_webui/CHANGELOG.md", build = "open_webui/frontend" }
|