[GH-ISSUE #16611] issue: Enforced temporary chat returns 404 error from v0.6.19 #33504

Closed
opened 2026-04-25 07:25:13 -05:00 by GiteaMirror · 1 comment
Owner

Originally created by @AInteriorB on GitHub (Aug 14, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/16611

Check Existing Issues

  • I have searched the existing issues and discussions.
  • I am using the latest version of Open WebUI.

Installation Method

Git Clone

Open WebUI Version

v0.6.22

Ollama Version (if applicable)

No response

Operating System

Linux Debian

Browser (if applicable)

No response

Confirmation

  • I have read and followed all instructions in README.md.
  • I am using the latest version of both Open WebUI and Ollama.
  • I have included the browser console logs.
  • I have included the Docker container logs.
  • I have provided every relevant configuration, setting, and environment variable used in my setup.
  • I have clearly listed every relevant configuration, custom setting, environment variable, and command-line option that influences my setup (such as Docker Compose overrides, .env values, browser settings, authentication configurations, etc).
  • I have documented step-by-step reproduction instructions that are precise, sequential, and leave nothing to interpretation. My steps:
  • Start with the initial platform/version/OS and dependencies used,
  • Specify exact install/launch/configure commands,
  • List URLs visited, user input (incl. example values/emails/passwords if needed),
  • Describe all options and toggles enabled or changed,
  • Include any files or environmental changes,
  • Identify the expected and actual result at each stage,
  • Ensure any reasonably skilled user can follow and hit the same issue.

Expected Behavior

should still work

Actual Behavior

returns error 404: Something went wrong :/

Steps to Reproduce

  1. Configure group permissions to "Allow Temorary Chat" and "Enforce Temporary Chat"
  2. Use UI with a memer of this group
  3. Chat

Logs & Screenshots

On client side:
Image

On server side:
2025-08-14 09:34:06.961 | INFO | uvicorn.protocols.http.httptools_impl:send:476 - 127.0.0.1:0 - "POST /api/chat/completions HTTP/1.1" 400

Additional Information

Relevant POST JSON:

{
  "stream": true,
  "model": "xxx",
  "messages": [
    {
      "role": "user",
      "content": "hi"
    }
  ],
  "params": {},
  "tool_servers": [],
  "features": {
    "image_generation": false,
    "code_interpreter": false,
    "web_search": false,
    "memory": false
  },
  "variables": {
    "{{USER_NAME}}": "X",
    "{{USER_LOCATION}}": "Unknown",
    "{{CURRENT_DATETIME}}": "2025-08-14 09:40:33",
    "{{CURRENT_DATE}}": "2025-08-14",
    "{{CURRENT_TIME}}": "09:40:33",
    "{{CURRENT_WEEKDAY}}": "Thursday",
    "{{CURRENT_TIMEZONE}}": "Europe/Amsterdam",
    "{{USER_LANGUAGE}}": "en-EN"
  },
  "model_item": {
    ...

      "meta": {
        "profile_image_url": "/static/favicon.png",
        "description": null,
        "capabilities": {
          "vision": true,
          "citations": true
        },
        "suggestion_prompts": null,
        "tags": []
      },
      "access_control": {
        "read": {
          "group_ids": [
            "xxxxxxxxx-xxxxxxxxxxxxx-xxxx"
          ],
          "user_ids": []
        },
        "write": {
          "group_ids": [],
          "user_ids": []
        }
      },
      "is_active": true,
      "updated_at": 1744721047,
      "created_at": 1744721047
    },
    "actions": [],
    "filters": []
  },
  "session_id": "xxxxxxxx",
  "chat_id": "local",
  "id": "xxxxxxxxx-xxxxxxxxxx-xxxxxxx",
  "background_tasks": {
    "follow_up_generation": true
  }
}

Response:

{"detail":"404: Something went wrong :/"}
Originally created by @AInteriorB on GitHub (Aug 14, 2025). Original GitHub issue: https://github.com/open-webui/open-webui/issues/16611 ### Check Existing Issues - [x] I have searched the existing issues and discussions. - [x] I am using the latest version of Open WebUI. ### Installation Method Git Clone ### Open WebUI Version v0.6.22 ### Ollama Version (if applicable) _No response_ ### Operating System Linux Debian ### Browser (if applicable) _No response_ ### Confirmation - [x] I have read and followed all instructions in `README.md`. - [x] I am using the latest version of **both** Open WebUI and Ollama. - [x] I have included the browser console logs. - [x] I have included the Docker container logs. - [x] I have **provided every relevant configuration, setting, and environment variable used in my setup.** - [x] I have clearly **listed every relevant configuration, custom setting, environment variable, and command-line option that influences my setup** (such as Docker Compose overrides, .env values, browser settings, authentication configurations, etc). - [x] I have documented **step-by-step reproduction instructions that are precise, sequential, and leave nothing to interpretation**. My steps: - Start with the initial platform/version/OS and dependencies used, - Specify exact install/launch/configure commands, - List URLs visited, user input (incl. example values/emails/passwords if needed), - Describe all options and toggles enabled or changed, - Include any files or environmental changes, - Identify the expected and actual result at each stage, - Ensure any reasonably skilled user can follow and hit the same issue. ### Expected Behavior should still work ### Actual Behavior returns error 404: Something went wrong :/ ### Steps to Reproduce 1. Configure group permissions to "Allow Temorary Chat" and "Enforce Temporary Chat" 2. Use UI with a memer of this group 3. Chat ### Logs & Screenshots On client side: ![Image](https://github.com/user-attachments/assets/9a8c2a95-64d2-4e02-9368-0abf03238cc8) On server side: `2025-08-14 09:34:06.961 | INFO | uvicorn.protocols.http.httptools_impl:send:476 - 127.0.0.1:0 - "POST /api/chat/completions HTTP/1.1" 400` ### Additional Information Relevant POST JSON: ``` { "stream": true, "model": "xxx", "messages": [ { "role": "user", "content": "hi" } ], "params": {}, "tool_servers": [], "features": { "image_generation": false, "code_interpreter": false, "web_search": false, "memory": false }, "variables": { "{{USER_NAME}}": "X", "{{USER_LOCATION}}": "Unknown", "{{CURRENT_DATETIME}}": "2025-08-14 09:40:33", "{{CURRENT_DATE}}": "2025-08-14", "{{CURRENT_TIME}}": "09:40:33", "{{CURRENT_WEEKDAY}}": "Thursday", "{{CURRENT_TIMEZONE}}": "Europe/Amsterdam", "{{USER_LANGUAGE}}": "en-EN" }, "model_item": { ... "meta": { "profile_image_url": "/static/favicon.png", "description": null, "capabilities": { "vision": true, "citations": true }, "suggestion_prompts": null, "tags": [] }, "access_control": { "read": { "group_ids": [ "xxxxxxxxx-xxxxxxxxxxxxx-xxxx" ], "user_ids": [] }, "write": { "group_ids": [], "user_ids": [] } }, "is_active": true, "updated_at": 1744721047, "created_at": 1744721047 }, "actions": [], "filters": [] }, "session_id": "xxxxxxxx", "chat_id": "local", "id": "xxxxxxxxx-xxxxxxxxxx-xxxxxxx", "background_tasks": { "follow_up_generation": true } } ``` Response: ``` {"detail":"404: Something went wrong :/"} ```
GiteaMirror added the bug label 2026-04-25 07:25:13 -05:00
Author
Owner

@tjbck commented on GitHub (Aug 14, 2025):

Duplicate, addressed in dev.

<!-- gh-comment-id:3187739420 --> @tjbck commented on GitHub (Aug 14, 2025): Duplicate, addressed in dev.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#33504