mirror of
https://github.com/open-webui/open-webui.git
synced 2026-07-16 23:21:44 -05:00
[GH-ISSUE #24910] issue: Imported grouped chats are marked as successful but folders are not created and imported chats are not visible in the chat list #123740
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @navidbakhtiary on GitHub (May 19, 2026).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/24910
Check Existing Issues
Installation Method
Git Clone
Open WebUI Version
v0.9.5
Ollama Version (if applicable)
No response
Operating System
Ubuntu 24
Browser (if applicable)
Chrome latest
Confirmation
README.md.Expected Behavior
When importing grouped chat data from ChatGPTExport, Open WebUI should either:
folder_idmust already exist in the Open WebUI database.The import should not report success if the imported chats cannot be accessed from the UI.
Actual Behavior
Open WebUI shows that the import was successful, and the chat records are inserted into the database.
However, the imported chats do not appear in the UI.
I first imported chats with
folder_idvalues coming from ChatGPT export fields such asconversation_template_id, for example:These records existed in the chat table and were not archived:
But Open WebUI did not create matching folders in the folder table.
After changing the converter script to set:
the chats are imported with folder_id = NULL, but they appear in the chat list as individual chats and not in a folder.
Steps to Reproduce
Export conversations from ChatGPT.
Convert/group the conversations into Open WebUI import format by python scripts.
Import the generated JSON file through:
Open WebUI reports that the import was successful.
Check the SQLite database:
The chat table contains:
Query latest imported chats:
The imported records exist and have archived = 0, but they are not visible in the Open WebUI sidebar/chat list.
Check folders:
No folders are automatically created for the imported grouped chats.
Logs & Screenshots
Database schema:
Folder schema:
Example imported records:
The records exist in the database, but are not shown in the UI.
Additional Information
No response