Files
default-applications-tree/openwebui/template.json
2026-06-11 21:00:22 +02:00

80 lines
3.0 KiB
JSON

{
"name": "openwebui",
"title": "Open WebUI",
"subtitle": "AI Chat Interface",
"description": "Open WebUI is a user-friendly WebUI for LLMs (formerly Ollama WebUI). It supports various LLM runners including OpenAI compatible APIs, with features like RAG, multi-modal support, and a powerful pipeline system.",
"icon": "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0xLjAgZW5jb2Rpbmc9VVRGLTg/Pgo8c3ZnIHhtbG5zPWh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIHdpZHRoPTIwMCBoZWlnaHQ9MjAwIHZpZXdCb3g9MCAwIDIwMCAyMDA+CiAgPHJlY3Qgd2lkdGg9MTAwJSBoZWlnaHQ9MTAwJSBmaWxsPXdoaXRlLz4KICA8dGV4dCB4PTUwJSB5PTUwJQogICAgICAgIHRleHQtYW5jaG9yPW1pZGRsZQogICAgICAgIGRvbWluYW50LWJhc2VsaW5lPW1pZGRsZQogICAgICAgIGZvbnQtZmFtaWx5PUFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWYKICAgICAgICBmb250LXNpemU9OTYKICAgICAgICBmb250LXdlaWdodD1ib2xkCiAgICAgICAgZmlsbD1ibGFjaz4KICAgIE9JCiAgPC90ZXh0Pgo8L3N2Zz4K",
"fields": [
{
"description": "Domain",
"key": "DOMAIN",
"value": "",
"required": "true"
},
{
"description": "Admin username",
"key": "WEBUI_ADMIN_NAME",
"value": "",
"info": "The initial admin username for Open WebUI.",
"required": "true"
},
{
"description": "Admin password",
"key": "WEBUI_ADMIN_PASSWORD",
"value": "",
"info": "The initial admin password for Open WebUI.",
"required": "true",
"type": "password"
},
{
"description": "OpenAI compatible API endpoint",
"key": "OPENAI_API_BASE_URL",
"value": "",
"info": "Optional API url for OpenAI compatible API endpoint.",
"advanced": "true"
},
{
"description": "WebUI secret key",
"key": "WEBUI_SECRET_KEY",
"value": "",
"required": "true",
"generated": "openssl|hex|32"
},
{
"description": "OpenAI API key",
"key": "OPENAI_API_KEY",
"value": "",
"info": "Optional API key for OpenAI compatible API endpoint.",
"advanced": "true",
"type": "password"
},
{
"description": "Postgres database name",
"key": "POSTGRES_DB",
"value": "",
"required": "true",
"generated": "time|md5|8"
},
{
"description": "Postgres username",
"key": "POSTGRES_USER",
"value": "",
"required": "true",
"generated": "time|md5|8"
},
{
"description": "Postgres password for user",
"key": "POSTGRES_PASSWORD",
"value": "",
"required": "true",
"generated": "random|md5|12"
},
{
"description": "Postgres root user password",
"key": "POSTGRES_ROOT_PASSWORD",
"value": "",
"required": "true",
"generated": "random|sha256|20"
}
]
}