[GH-ISSUE #24553] issue: /api/chat/completions runs into error #74932

Open
opened 2026-05-13 07:48:00 -05:00 by GiteaMirror · 35 comments
Owner

Originally created by @tweinberger-lei on GitHub (May 10, 2026).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/24553

Check Existing Issues

  • I have searched for any existing and/or related issues.
  • I have searched for any existing and/or related discussions.
  • I have also searched in the CLOSED issues AND CLOSED discussions and found no related items (your issue might already be addressed on the development branch!).
  • I am using the latest version of Open WebUI.

Installation Method

Git Clone

Open WebUI Version

v0.9.5

Ollama Version (if applicable)

No response

Operating System

Debian 12

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

llm api response

Actual Behavior

"detail":"'NoneType' object has no attribute 'startswith'"

Steps to Reproduce

curl -s -X POST "http://127.0.0.1:8080/api/chat/completions"
-H "Authorization: Bearer xxxx"
-H "Content-Type: application/json"
-d '{
"model": "gpt-oss:120b",
"messages": [
{
"role": "user",
"content": "Answer with: OK"
}
],
"stream": false
}'

Logs & Screenshots

curl returns: {"detail":"'NoneType' object has no attribute 'startswith'"}

Additional Information

Reverting to v0.9.4 solves the issue

Originally created by @tweinberger-lei on GitHub (May 10, 2026). Original GitHub issue: https://github.com/open-webui/open-webui/issues/24553 ### Check Existing Issues - [x] I have searched for any existing and/or related issues. - [x] I have searched for any existing and/or related discussions. - [x] I have also searched in the CLOSED issues AND CLOSED discussions and found no related items (your issue might already be addressed on the development branch!). - [x] I am using the latest version of Open WebUI. ### Installation Method Git Clone ### Open WebUI Version v0.9.5 ### Ollama Version (if applicable) _No response_ ### Operating System Debian 12 ### 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 llm api response ### Actual Behavior "detail":"'NoneType' object has no attribute 'startswith'" ### Steps to Reproduce curl -s -X POST "http://127.0.0.1:8080/api/chat/completions" \ -H "Authorization: Bearer xxxx" \ -H "Content-Type: application/json" \ -d '{ "model": "gpt-oss:120b", "messages": [ { "role": "user", "content": "Answer with: OK" } ], "stream": false }' ### Logs & Screenshots curl returns: {"detail":"'NoneType' object has no attribute 'startswith'"} ### Additional Information Reverting to v0.9.4 solves the issue
GiteaMirror added the bug label 2026-05-13 07:48:00 -05:00
Author
Owner

@Classic298 commented on GitHub (May 10, 2026):

We just had a report for this, which i closed because to the best of my efforts I can not reproduce this.

How can I reproduce this?

<!-- gh-comment-id:4416445156 --> @Classic298 commented on GitHub (May 10, 2026): We just had a report for this, which i closed because to the best of my efforts I can not reproduce this. How can I reproduce this?
Author
Owner

@tweinberger-lei commented on GitHub (May 10, 2026):

on my system it can be reproduced by using the curl script provided

<!-- gh-comment-id:4416454933 --> @tweinberger-lei commented on GitHub (May 10, 2026): on my system it can be reproduced by using the curl script provided
Author
Owner

@xcjs commented on GitHub (May 10, 2026):

@Classic298 #24554 has reproductions steps for my environment.

Downgrading to v0.9.4 resolves the issue for me for now.

<!-- gh-comment-id:4416455729 --> @xcjs commented on GitHub (May 10, 2026): @Classic298 #24554 has reproductions steps for my environment. Downgrading to v0.9.4 resolves the issue for me for now.
Author
Owner

@Classic298 commented on GitHub (May 10, 2026):

aha, direct api calls affected only

<!-- gh-comment-id:4416474477 --> @Classic298 commented on GitHub (May 10, 2026): aha, direct api calls affected only
Author
Owner

@lnovelli commented on GitHub (May 10, 2026):

same issue here on 0.9.5.
Downgrading to 0.9.4 fixes.

<!-- gh-comment-id:4416493690 --> @lnovelli commented on GitHub (May 10, 2026): same issue here on 0.9.5. Downgrading to 0.9.4 fixes.
Author
Owner

@Classic298 commented on GitHub (May 10, 2026):

whipping up a quick fix...

It should be a basically single line change if anyone wants to patch their file locally so they can use 0.9.5.

<!-- gh-comment-id:4416506668 --> @Classic298 commented on GitHub (May 10, 2026): whipping up a quick fix... It should be a basically single line change if anyone wants to patch their file locally so they can use 0.9.5.
Author
Owner

@tweinberger-lei commented on GitHub (May 10, 2026):

whipping up a quick fix...

It should be a basically single line change if anyone wants to patch their file locally so they can use 0.9.5.

yes - would be great

<!-- gh-comment-id:4416517613 --> @tweinberger-lei commented on GitHub (May 10, 2026): > whipping up a quick fix... > > It should be a basically single line change if anyone wants to patch their file locally so they can use 0.9.5. yes - would be great
Author
Owner

@xcjs commented on GitHub (May 10, 2026):

whipping up a quick fix...

It should be a basically single line change if anyone wants to patch their file locally so they can use 0.9.5.

I use Docker - the best way to resolve that would be to cut a new release.

<!-- gh-comment-id:4416523105 --> @xcjs commented on GitHub (May 10, 2026): > whipping up a quick fix... > > It should be a basically single line change if anyone wants to patch their file locally so they can use 0.9.5. I use Docker - the best way to resolve that would be to cut a new release.
Author
Owner

@Classic298 commented on GitHub (May 10, 2026):

if anyone wants to fix it for their 0.9.5 installation: its a single line fix:

https://github.com/open-webui/open-webui/pull/24556

<!-- gh-comment-id:4416523151 --> @Classic298 commented on GitHub (May 10, 2026): if anyone wants to fix it for their 0.9.5 installation: its a single line fix: https://github.com/open-webui/open-webui/pull/24556
Author
Owner

@Classic298 commented on GitHub (May 10, 2026):

@xcjs you can easily modify the file within docker

<!-- gh-comment-id:4416524272 --> @Classic298 commented on GitHub (May 10, 2026): @xcjs you can easily modify the file within docker
Author
Owner

@Classic298 commented on GitHub (May 10, 2026):

but yeah tim will merge this in for sure

<!-- gh-comment-id:4416524662 --> @Classic298 commented on GitHub (May 10, 2026): but yeah tim will merge this in for sure
Author
Owner

@xcjs commented on GitHub (May 10, 2026):

@xcjs you can easily modify the file within docker

I'm aware, but not in my environment. I have orchestration around container deployments, and doing manual patches like that doesn't scale.

An extended Dockerfile is an option, but I'd have to break away from the Github registry/update process we use.

TL;DR: I'll just wait for v.0.9.6/etc. as long as it's coming. :-)

<!-- gh-comment-id:4416528741 --> @xcjs commented on GitHub (May 10, 2026): > [@xcjs](https://github.com/xcjs) you can easily modify the file within docker I'm aware, but not in my environment. I have orchestration around container deployments, and doing manual patches like that doesn't scale. An extended Dockerfile is an option, but I'd have to break away from the Github registry/update process we use. TL;DR: I'll just wait for v.0.9.6/etc. as long as it's coming. :-)
Author
Owner

@Classic298 commented on GitHub (May 10, 2026):

For public facing deployments or deployments with higher security requirements I would personally recommend patching that one line, since 0.9.5 has more than a dozen security fixes for vulnerabilities. A dockerfile to patch that one line should be trivial - but yes you do you

Tim will merge it in 100% in 0.9.6. Just not within the hour. May take a day or so

<!-- gh-comment-id:4416535694 --> @Classic298 commented on GitHub (May 10, 2026): For public facing deployments or deployments with higher security requirements I would personally recommend patching that one line, since 0.9.5 has more than a dozen security fixes for vulnerabilities. A dockerfile to patch that one line should be trivial - but yes you do you Tim will merge it in 100% in 0.9.6. Just not within the hour. May take a day or so
Author
Owner

@tweinberger-lei commented on GitHub (May 10, 2026):

if anyone wants to fix it for their 0.9.5 installation: its a single line fix:

#24556

confirmed to fix it - thanks!

<!-- gh-comment-id:4416544943 --> @tweinberger-lei commented on GitHub (May 10, 2026): > if anyone wants to fix it for their 0.9.5 installation: its a single line fix: > > [#24556](https://github.com/open-webui/open-webui/pull/24556) confirmed to fix it - thanks!
Author
Owner

@somera commented on GitHub (May 11, 2026):

if anyone wants to fix it for their 0.9.5 installation: its a single line fix:

#24556

Works for me. Thx.

<!-- gh-comment-id:4418826813 --> @somera commented on GitHub (May 11, 2026): > if anyone wants to fix it for their 0.9.5 installation: its a single line fix: > > [#24556](https://github.com/open-webui/open-webui/pull/24556) Works for me. Thx.
Author
Owner

@Classic298 commented on GitHub (May 11, 2026):

@Ghosterme-dev in case you didn't notice, i deleted your comment multiple times now from this and other issues. You copy pasted the same comment everywhere, and it's AI Slop. The "root cause" is not the root cause and the line you identified at being at fault/needing changes is not actually the line that needs changes.

https://github.com/open-webui/open-webui/pull/24556/changes#diff-c5a084a65b46fbba7f2b0916c5ca4e5b3435eef28bc533e60c53ae85aeb1da4bR903

this here is what actually needs a fix.

Please don't copy paste the same answer on multiple issues, that is spamming - and even less so when it's wrong information. Thank you.

<!-- gh-comment-id:4420767367 --> @Classic298 commented on GitHub (May 11, 2026): @Ghosterme-dev in case you didn't notice, i deleted your comment multiple times now from this and other issues. You copy pasted the same comment everywhere, and it's AI Slop. The "root cause" is not the root cause and the line you identified at being at fault/needing changes is not actually the line that needs changes. https://github.com/open-webui/open-webui/pull/24556/changes#diff-c5a084a65b46fbba7f2b0916c5ca4e5b3435eef28bc533e60c53ae85aeb1da4bR903 this here is what actually needs a fix. Please don't copy paste the same answer on multiple issues, that is spamming - and even less so when it's wrong information. Thank you.
Author
Owner

@Ghosterme-dev commented on GitHub (May 11, 2026):

Sorry for the confusion. I wasn't aware that you deleted, as it said only bot. I thought the deletion was because the cases were already closed.

Only wanted to contribute your development.

However, I only had AI generate the layout, not the content. For some reason, though, the fix seems to have worked for me, so I wanted to let you know.
In any case, in the future I’ll be more careful with how I phrase things regarding the root cause.

<!-- gh-comment-id:4420933913 --> @Ghosterme-dev commented on GitHub (May 11, 2026): Sorry for the confusion. I wasn't aware that you deleted, as it said only bot. I thought the deletion was because the cases were already closed. Only wanted to contribute your development. However, I only had AI generate the layout, not the content. For some reason, though, the fix seems to have worked for me, so I wanted to let you know. In any case, in the future I’ll be more careful with how I phrase things regarding the root cause.
Author
Owner

@gaby commented on GitHub (May 11, 2026):

@Classic298 @tjbck It would be beneficial for Open-WebUI to release "rc" (release candidate) versions before a full release. Lately, releases have included both breaking bugs and database migrations.

<!-- gh-comment-id:4421043980 --> @gaby commented on GitHub (May 11, 2026): @Classic298 @tjbck It would be beneficial for Open-WebUI to release "rc" (release candidate) versions before a full release. Lately, releases have included both breaking bugs and database migrations.
Author
Owner

@Classic298 commented on GitHub (May 11, 2026):

That's the dev branch. The dev branch is the release candidate. Everything that gets merged into dev basically has a 99.9% chance of making it into the next version. It practically never happens that something gets reverted on the dev branch - especially not db migrations

And what's the issue with database migrations being in releases? We specifically warn about it in the release notes on top and on the bottom in the changed section

<!-- gh-comment-id:4421432051 --> @Classic298 commented on GitHub (May 11, 2026): That's the dev branch. The dev branch is the release candidate. Everything that gets merged into dev basically has a 99.9% chance of making it into the next version. It practically never happens that something gets reverted on the dev branch - especially not db migrations And what's the issue with database migrations being in releases? We specifically warn about it in the release notes on top and on the bottom in the changed section
Author
Owner

@Classic298 commented on GitHub (May 11, 2026):

We have said many times on reddit/discord and here that we would appreciate if people can help test the dev branch more.

Testing environments, development environments, companies deploying the dev branch on a test server to test out new features and prepare for a new version etc.

If there'd be dedicated release candidate versions i am not sure that would improve at all because why would they start using rc versions if they are already not trying out the dev branch.

<!-- gh-comment-id:4421443554 --> @Classic298 commented on GitHub (May 11, 2026): We have said many times on reddit/discord and here that we would appreciate if people can help test the dev branch more. Testing environments, development environments, companies deploying the dev branch on a test server to test out new features and prepare for a new version etc. If there'd be dedicated release candidate versions i am not sure that would improve at all because why would they start using rc versions if they are already not trying out the dev branch.
Author
Owner

@gaby commented on GitHub (May 11, 2026):

Are there docker images for the dev branch being published?

<!-- gh-comment-id:4421462901 --> @gaby commented on GitHub (May 11, 2026): Are there docker images for the `dev` branch being published?
Author
Owner

@Classic298 commented on GitHub (May 11, 2026):

Yes. Every single commit gets a tagged docker image and if you pull just the dev image you always get the latest commit of the dev branch

<!-- gh-comment-id:4421502537 --> @Classic298 commented on GitHub (May 11, 2026): Yes. Every single commit gets a tagged docker image and if you pull just the dev image you always get the latest commit of the dev branch
Author
Owner

@Classic298 commented on GitHub (May 11, 2026):

So every commit to dev, unless the build fails - in that case no tag is created - gets it's own tagged docker image with the sha being the identifier for that image, so you can even pin it to a specific commit if you like.

And the bare :dev tag always points to the latest commit on the dev branch

DB Migrations have, if i remember correctly, never been reverted on the dev branch.
And very large features are typically merged in one go. Tim creates dedicated large PRs for that and merges them into dev in one go - once that new feature is done.

I use dev privately, exclusively. For development but also for personal use. In my org we also have a dedicated testing environment with latest dev always deployed for testing new features and .. again: development.

I have caught minor not-ideal features before on dev branches, which helped us fix it before it shipped in a new version.

But bugs like this - I would never catch them because simply I do not use Open WebUI as an API proxy and this bug only affects that usecase.

WE ARE working on a full test suite with end-to-end tests and automated tests. And you can be sure that this one here got integrated yesterday, to cover an API-only chat completion flow. But before that entire test suite becomes really useful, a couple of months will have to pass where we slowly build and grow the test suite into hundreds of tests.

This doesn't mean we will never have regressions again, but it should help with reducing recurring regressions.

<!-- gh-comment-id:4421559253 --> @Classic298 commented on GitHub (May 11, 2026): So every commit to dev, unless the build fails - in that case no tag is created - gets it's own tagged docker image with the sha being the identifier for that image, so you can even pin it to a specific commit if you like. And the bare :dev tag always points to the latest commit on the dev branch DB Migrations have, if i remember correctly, never been reverted on the dev branch. And very large features are typically merged in one go. Tim creates dedicated large PRs for that and merges them into dev in one go - once that new feature is done. I use dev privately, exclusively. For development but also for personal use. In my org we also have a dedicated testing environment with latest dev always deployed for testing new features and .. again: development. I have caught minor not-ideal features before on dev branches, which helped us fix it before it shipped in a new version. But bugs like this - I would never catch them because simply I do not use Open WebUI as an API proxy and this bug only affects that usecase. WE ARE working on a full test suite with end-to-end tests and automated tests. And you can be sure that this one here got integrated yesterday, to cover an API-only chat completion flow. But before that entire test suite becomes really useful, a couple of months will have to pass where we slowly build and grow the test suite into hundreds of tests. This doesn't mean we will never have regressions again, but it should help with reducing recurring regressions.
Author
Owner

@Classic298 commented on GitHub (May 11, 2026):

And if not obvious - i encourage everyone here to use the dev branch.

If you do not want to risk your real data, then use it as a second environment only. If you are a company: set up a small (weak) VPS and install bare dev there and use it for development, testing and experimenting. If you catch anything that is out of the ordinary: great! Report it to us here so we can fix it while that bug is still in dev. We will be extremely happy if you do so.

In fact, this is the single thing you can do that has immense positive impact for Open WebUI.
Many PRs cannot be merged due to code quality, scope, atomicity or other reasons.
A well written bug report for a bug you found on the dev branch is GOLD.

If anyone needs a guide

If you want a tagged version specific to one commit:

Image Image

Just use the shortened commit hash and use that as tag as shown here in the image, which would result in, for example docker pull ghcr.io/open-webui/open-webui:git-41b48b5

<!-- gh-comment-id:4421635937 --> @Classic298 commented on GitHub (May 11, 2026): And if not obvious - i encourage everyone here to use the dev branch. If you do not want to risk your real data, then use it as a second environment only. If you are a company: set up a small (weak) VPS and install bare dev there and use it for development, testing and experimenting. If you catch anything that is out of the ordinary: great! Report it to us here so we can fix it while that bug is still in dev. We will be extremely happy if you do so. In fact, this is the single thing you can do that has immense positive impact for Open WebUI. Many PRs cannot be merged due to code quality, scope, atomicity or other reasons. <ins>**A well written bug report for a bug you found on the dev branch is GOLD.**</ins> If anyone needs a guide - https://docs.openwebui.com/getting-started/advanced-topics/development here is a guide how to manually set up a development environment - To use the dev branch, either set up the development environment as outlined in the docs, or for docker, just use the `ghcr.io/open-webui/open-webui:dev` tag If you want a tagged version specific to one commit: <img width="1304" height="713" alt="Image" src="https://github.com/user-attachments/assets/6314cfd1-dceb-4714-81af-6c2bddb05e21" /> <img width="1506" height="774" alt="Image" src="https://github.com/user-attachments/assets/e933ba4e-d069-4223-8570-0d30a8b12177" /> Just use the shortened commit hash and use that as tag as shown here in the image, which would result in, for example `docker pull ghcr.io/open-webui/open-webui:git-41b48b5`
Author
Owner

@alexlach commented on GitHub (May 12, 2026):

If anyone needs a workaround while staying 0.9.5, you can pass a dummy chat_id in the payload like this:

{
    "model": "gpt-5.5",
    "messages": [
        {
            "role": "user",
            "content": [{"type": "text", "text": prompt}],
        },
    ],
    "chat_id": "test",
}
<!-- gh-comment-id:4426749961 --> @alexlach commented on GitHub (May 12, 2026): If anyone needs a workaround while staying 0.9.5, you can pass a dummy chat_id in the payload like this: ``` { "model": "gpt-5.5", "messages": [ { "role": "user", "content": [{"type": "text", "text": prompt}], }, ], "chat_id": "test", } ```
Author
Owner

@moras-p commented on GitHub (May 12, 2026):

If anyone needs a workaround while staying 0.9.5, you can pass a dummy chat_id in the payload like this:

{
    "model": "gpt-5.5",
    "messages": [
        {
            "role": "user",
            "content": [{"type": "text", "text": prompt}],
        },
    ],
    "chat_id": "test",
}

For a quick fix, request with "chat_id": "" still fails for me, but "chat_id": "" does work.

<!-- gh-comment-id:4428969561 --> @moras-p commented on GitHub (May 12, 2026): > If anyone needs a workaround while staying 0.9.5, you can pass a dummy chat_id in the payload like this: > > ``` > { > "model": "gpt-5.5", > "messages": [ > { > "role": "user", > "content": [{"type": "text", "text": prompt}], > }, > ], > "chat_id": "test", > } > ``` For a quick fix, request with "chat_id": "<any string>" still fails for me, but "chat_id": "" does work.
Author
Owner

@Classic298 commented on GitHub (May 12, 2026):

The quick fix has been documented above by me. There's an open PR. it's a single line edit, in fact, just two characters need to get changed then it works again. Use that as the primary fix.

<!-- gh-comment-id:4429099542 --> @Classic298 commented on GitHub (May 12, 2026): The quick fix has been documented above by me. There's an open PR. it's a single line edit, in fact, just two characters need to get changed then it works again. Use that as the primary fix.
Author
Owner

@kaac5 commented on GitHub (May 13, 2026):

When can this bug be fixed?

<!-- gh-comment-id:4436570522 --> @kaac5 commented on GitHub (May 13, 2026): When can this bug be fixed?
Author
Owner

@Classic298 commented on GitHub (May 13, 2026):

FIXED IN LATEST DEV

<!-- gh-comment-id:4438345987 --> @Classic298 commented on GitHub (May 13, 2026): **FIXED IN LATEST DEV**
Author
Owner
<!-- gh-comment-id:4438347030 --> @Classic298 commented on GitHub (May 13, 2026): https://github.com/open-webui/open-webui/commit/bc244fdc90504824b76654880898bf3f6649c299#diff-c5a084a65b46fbba7f2b0916c5ca4e5b3435eef28bc533e60c53ae85aeb1da4bR895-L897
Author
Owner

@chrysillis commented on GitHub (May 13, 2026):

I just pulled ghcr.io/open-webui/open-webui:dev and it still has the bug in it. I am trying with a curl command to test.

<!-- gh-comment-id:4438369911 --> @chrysillis commented on GitHub (May 13, 2026): I just pulled `ghcr.io/open-webui/open-webui:dev` and it still has the bug in it. I am trying with a curl command to test.
Author
Owner

@Classic298 commented on GitHub (May 13, 2026):

hmm tim refactored the docker container publishing pipeline. No image for latest dev has been published yet. @chrysillis feel free to download latest dev from git to try i'll go check whats what

<!-- gh-comment-id:4438455780 --> @Classic298 commented on GitHub (May 13, 2026): hmm tim refactored the docker container publishing pipeline. No image for latest dev has been published yet. @chrysillis feel free to download latest dev from git to try i'll go check whats what
Author
Owner

@chrysillis commented on GitHub (May 13, 2026):

Maybe I'm trying to pull too soon? I tried pulling this ghcr.io/open-webui/open-webui:git-bc244fd and got this error: failed to pull images of the stack: compose pull operation failed: Error response from daemon: manifest unknown

<!-- gh-comment-id:4438497700 --> @chrysillis commented on GitHub (May 13, 2026): Maybe I'm trying to pull too soon? I tried pulling this **ghcr.io/open-webui/open-webui:git-bc244fd** and got this error: `failed to pull images of the stack: compose pull operation failed: Error response from daemon: manifest unknown`
Author
Owner

@Classic298 commented on GitHub (May 13, 2026):

As i just said, no image for dev has been published yet. So there's nothing to pull.

Try downloading dev from git for now and i'll go check whats what

<!-- gh-comment-id:4438514135 --> @Classic298 commented on GitHub (May 13, 2026): As i just said, no image for dev has been published yet. So there's nothing to pull. Try downloading dev from git for now and i'll go check whats what
Author
Owner

@Arondight commented on GitHub (May 13, 2026):

bc244fd#diff-c5a084a65b46fbba7f2b0916c5ca4e5b3435eef28bc533e60c53ae85aeb1da4bR895-L897

hi, when will v0.9.6 released?

<!-- gh-comment-id:4439222517 --> @Arondight commented on GitHub (May 13, 2026): > [bc244fd#diff-c5a084a65b46fbba7f2b0916c5ca4e5b3435eef28bc533e60c53ae85aeb1da4bR895-L897](https://github.com/open-webui/open-webui/commit/bc244fdc90504824b76654880898bf3f6649c299#diff-c5a084a65b46fbba7f2b0916c5ca4e5b3435eef28bc533e60c53ae85aeb1da4bR895-L897) hi, when will v0.9.6 released?
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#74932