Compare commits

...

5 Commits

Author SHA1 Message Date
Classic298
d8a44ad738 Merge pull request #872 from HennieLP/DocumentIntellIgenceModelConfiguration 2025-12-09 22:30:17 +01:00
Classic298
ccf5019de9 Merge pull request #880 from bitsofinfo/dev 2025-12-09 22:29:10 +01:00
bitsofinfo
c1cf8284eb feat: OAUTH_AUDIENCE config 2025-12-04 16:20:00 -07:00
bitsofinfo
fbd240c0d4 feat: AUTH0_AUDIENCE 2025-12-04 15:02:57 -07:00
Hendrik Hassa
43ae2b98df Adds document intelligence model configuration
Adds the `DOCUMENT_INTELLIGENCE_MODEL` environment variable, allowing users to specify the model used for document intelligence.
2025-12-02 18:31:08 +01:00
2 changed files with 8 additions and 0 deletions

View File

@@ -120,6 +120,7 @@ The following environment variables are used:
1. `OAUTH_PROVIDER_NAME` - Name of the provider to show on the UI, defaults to SSO
1. `OAUTH_SCOPES` - Scopes to request. Defaults to `openid email profile`
1. `OPENID_REDIRECT_URI` - The redirect URI configured in your OIDC application. This must be set to `<open-webui>/oauth/oidc/callback`.
1. `OAUTH_AUDIENCE` - Optional `audience` value that will be passed to the oauth provider's authorization endpoint as an additional query parameter.
:::warning

View File

@@ -2639,6 +2639,13 @@ Strictly return in JSON format:
- Description: Specifies the key for document intelligence.
- Persistence: This environment variable is a `PersistentConfig` variable.
#### `DOCUMENT_INTELLIGENCE_MODEL`
- Type: `str`
- Default: `None`
- Description: Specifies the model for document intelligence.
- Persistence: This environment variable is a `PersistentConfig` variable.
### Advanced Settings
#### `BYPASS_EMBEDDING_AND_RETRIEVAL`