Files
registry/entries/open-webui/manifest.json
yi-ge f8485c1ed4 feat: 为 8 个 docker-app 声明 exposes,激活安装后服务自动派生
补齐 anythingllm/coze/dify/lobechat/n8n/open-webui/openclaw/ragflow 的 exposes
字段(http-api + 真实 docker 端口 + 公认 API 路径),使应用安装后能派生出
origin=app 的独立服务条目并生成 per-service Skill。端口取自各 manifest 的
install.requirements.ports,路径为各应用公认 API 前缀(需按真实部署核对)。
2026-06-14 18:29:48 +08:00

49 lines
1.2 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"id": "open-webui",
"name": "Open WebUI",
"type": "docker-app",
"version": "0.8.10",
"author": "Open WebUI",
"description": "自托管的 AI 对话界面,支持 Ollama 和 OpenAI 兼容 API",
"tags": [
"Chat",
"Ollama",
"WebUI"
],
"icon": "linear-gradient(135deg, #6366F1, #8B5CF6)",
"iconLetter": "O",
"platformSupport": [
"macos",
"windows",
"linux"
],
"category": "chat",
"fullDesc": "Open WebUI 是一个可扩展的自托管 AI 界面,支持完全离线操作。支持多种 LLM 运行器,包括 Ollama 和 OpenAI 兼容 API内置 RAG 集成、网页浏览、代码执行等功能。",
"stars": 126300,
"githubUrl": "https://github.com/open-webui/open-webui",
"shortDesc": "自托管的 AI 对话界面,支持 Ollama 和 OpenAI 兼容 API",
"install": {
"method": "docker",
"requirements": {
"docker": true,
"minMemory": "2GB",
"minDisk": "5GB",
"ports": [
8080
]
},
"configNeeded": [
"Docker 运行环境",
"Ollama 或 OpenAI API Key"
]
},
"exposes": [
{
"type": "http-api",
"port": 8080,
"path": "/api",
"name": "Open WebUI API"
}
]
}