Merge branch 'dev' of https://github.com/open-webui/open-webui into remove-ollama

This commit is contained in:
Michael Poluektov
2024-08-10 11:47:20 +01:00
51 changed files with 450 additions and 229 deletions

View File

@@ -150,10 +150,10 @@ async def update_engine_url(
else:
url = form_data.AUTOMATIC1111_BASE_URL.strip("/")
try:
r = requests.head(url)
r = requests.head(url)
app.state.config.AUTOMATIC1111_BASE_URL = url
except Exception as e:
raise HTTPException(status_code=400, detail=ERROR_MESSAGES.DEFAULT(e))
raise HTTPException(status_code=400, detail="Invalid URL provided.")
if form_data.COMFYUI_BASE_URL == None:
app.state.config.COMFYUI_BASE_URL = COMFYUI_BASE_URL