dev #112

Merged
gyurix merged 2 commits from dev into main 2026-07-18 11:40:31 +00:00
3 changed files with 20 additions and 1 deletions
Showing only changes of commit 6ac1c69393 - Show all commits
+1
View File
@@ -21,6 +21,7 @@
"WEBUI_ADMIN_PASSWORD": "#WEBUI_ADMIN_PASSWORD",
"WEBUI_SECRET_KEY": "#WEBUI_SECRET_KEY",
"OPENAI_API_KEY": "#OPENAI_API_KEY",
"HF_TOKEN": "#HF_TOKEN",
"DATABASE_URL": "postgres://#POSTGRES_USER:#POSTGRES_PASSWORD@openwebuipostgres-db:5432/#POSTGRES_DB",
"EXTERNAL_WEB_SEARCH_API_KEY": "#SEARXNG_SECRET",
"EXTERNAL_WEB_LOADER_API_KEY": "#CRAWL4AI_API_TOKEN"
+4 -1
View File
@@ -225,7 +225,10 @@
],
"ENVS": [
{
"ENABLE_PERSISTENT_CONFIG": "false"
"ENABLE_PERSISTENT_CONFIG": "true"
},
{
"HF_HUB_OFFLINE": "#DISABLE_HUGGINGFACE"
},
{
"OPENAI_API_BASE_URL": "#OPENAI_API_BASE_URL"
+15
View File
@@ -55,6 +55,21 @@
"advanced": "true",
"type": "password"
},
{
"description": "Hugging Face token",
"key": "HF_TOKEN",
"value": "",
"info": "Optional Hugging Face API token for TTS and model access features.",
"advanced": "true",
"type": "password"
},
{
"description": "Disable Hugging Face requests",
"key": "DISABLE_HUGGINGFACE",
"value": "1",
"info": "Set to 1 to disable all outgoing requests to huggingface.co at startup. Set to 0 or leave empty to allow Hugging Face access.",
"advanced": "true"
},
{
"description": "Pipelines API key",
"key": "PIPELINES_API_KEY",