mirror of
https://github.com/open-webui/docs.git
synced 2026-01-02 09:49:38 +07:00
temporary chat information on document processing
This commit is contained in:
@@ -79,6 +79,7 @@ The following table lists the available URL parameters, their function, and exam
|
||||
- **How to Set**: Set this parameter to `true` for a temporary chat session.
|
||||
- **Example**: `/?temporary-chat=true`
|
||||
- **Behavior**: This initiates a disposable chat session without saving history or applying advanced configurations.
|
||||
- **Note**: Document processing in temporary chats is frontend-only for privacy. Complex files requiring backend parsing (e.g., DOCX) may not be fully supported.
|
||||
|
||||
### 9. **Code Interpreter**
|
||||
|
||||
|
||||
@@ -202,7 +202,7 @@ import { TopBanners } from "@site/src/components/TopBanners";
|
||||
|
||||
- ✅ **Multiple Instances of Same Model in Chats**: Enhanced many model chat to support adding multiple instances of the same model.
|
||||
|
||||
- 💬 **Temporary Chat Feature**: Introduced a temporary chat feature, deprecating the old chat history setting to enhance user interaction flexibility.
|
||||
- 💬 **Temporary Chat Feature**: Introduced a temporary chat feature, deprecating the old chat history setting to enhance user interaction flexibility. Please note that **document processing in temporary chats is performed entirely in the browser** to ensure privacy and data minimization. This means specific file types requiring backend processing (like complex DOCX parsing) may have limited functionality in temporary mode.
|
||||
|
||||
- 🖋️ **User Message Editing**: Enhanced the user chat editing feature to allow saving changes without sending.
|
||||
|
||||
|
||||
@@ -23,6 +23,10 @@ With proper document extraction, Open WebUI can help you:
|
||||
- Extract data in structured formats for further processing
|
||||
- Support multilingual content recognition
|
||||
|
||||
:::note Privacy in Temporary Chats
|
||||
In **Temporary Chat** mode, document extraction is performed **exclusively in the browser** to prevent data from being stored or processed on the backend. This strict privacy measure means that some complex file formats (like certain DOCX files) that rely on backend parsers may not be processed correctly.
|
||||
:::
|
||||
|
||||
## Available Extraction Methods
|
||||
|
||||
Open WebUI supports multiple document extraction engines to accommodate different needs and document types. Each extraction method has its own strengths and is suitable for different scenarios.
|
||||
|
||||
@@ -59,6 +59,10 @@ The dedicated RAG pipeline for summarizing YouTube videos via video URLs enables
|
||||
|
||||
A variety of parsers extract content from local and remote documents. For more, see the [`get_loader`](https://github.com/open-webui/open-webui/blob/2fa94956f4e500bf5c42263124c758d8613ee05e/backend/apps/rag/main.py#L328) function.
|
||||
|
||||
:::warning Temporary Chat Limitations
|
||||
When using **Temporary Chat**, document processing is restricted to **frontend-only** operations to ensure your data stays private and is not stored on the server. Consequently, advanced backend parsing (used for formats like complex DOCX files) is disabled, which may result in raw data being seen instead of parsed text. For full document support, use a standard chat session.
|
||||
:::
|
||||
|
||||
## Google Drive Integration
|
||||
|
||||
When paired with a Google Cloud project that has the Google Picker API and Google Drive API enabled, this feature allows users to directly access their Drive files from the chat interface and upload documents, slides, sheets and more and uploads them as context to your chat. Can be enabled `Admin Panel` > `Settings` > `Documents` menu. Must set [`GOOGLE_DRIVE_API_KEY and GOOGLE_DRIVE_CLIENT_ID`](../../getting-started/env-configuration.mdx) environment variables to use.
|
||||
|
||||
@@ -85,7 +85,7 @@ Controls the features available to the user inside the chat interface.
|
||||
| **Text-to-Speech (TTS)**| Ability to use voice output. |
|
||||
| **Audio Call** | Ability to use the real-time audio call feature. |
|
||||
| **Multiple Models** | Ability to select multiple models for a simultaneous response. |
|
||||
| **Temporary Chat** | **(Parent)** Ability to toggle "Temporary Chat" (incognito mode/history off). |
|
||||
| **Temporary Chat** | **(Parent)** Ability to toggle "Temporary Chat" (incognito mode/history off). **Note:** Backend document parsing is disabled in this mode for privacy. |
|
||||
| **Enforced Temporary** | *(Requires Temporary Chat)* **Restricts** the user to *always* use temporary chat (history disabled). |
|
||||
|
||||
### 4. Features Permissions
|
||||
|
||||
@@ -4622,7 +4622,7 @@ This is useful when you need a JWT access token for downstream validation or whe
|
||||
|
||||
- Type: `bool`
|
||||
- Default: `True`
|
||||
- Description: Enables or disables user permission to create temporary chats.
|
||||
- Description: Enables or disables user permission to create temporary chats. **Note:** Temporary chats disable backend document parsing for privacy.
|
||||
- Persistence: This environment variable is a `PersistentConfig` variable.
|
||||
|
||||
#### `USER_PERMISSIONS_CHAT_TEMPORARY_ENFORCED`
|
||||
|
||||
@@ -82,6 +82,7 @@ The following URL parameters can be used to customize your Open WebUI instance:
|
||||
### Temporary Chat Sessions
|
||||
|
||||
- `temporary-chat`: Mark the chat as a temporary session by setting this parameter to `true` (e.g., `/?temporary-chat=true`)
|
||||
- *Note: Document processing is frontend-only in temporary chats. Complex files requiring backend parsing may not work.*
|
||||
|
||||
See https://docs.openwebui.com/features/chat-features/url-params for more info on URL parameters and how to use them.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user