github-actions[bot] commited on
Commit
dd8990d
0 Parent(s):

GitHub deploy: 15b91d5242cbef8844a8eab8fc0885f7cc0f3f13

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .dockerignore +19 -0
  2. .env.example +13 -0
  3. .eslintignore +13 -0
  4. .eslintrc.cjs +31 -0
  5. .gitattributes +2 -0
  6. .github/FUNDING.yml +1 -0
  7. .github/ISSUE_TEMPLATE/bug_report.md +70 -0
  8. .github/ISSUE_TEMPLATE/feature_request.md +25 -0
  9. .github/dependabot.yml +12 -0
  10. .github/pull_request_template.md +72 -0
  11. .github/workflows/build-release.yml +72 -0
  12. .github/workflows/deploy-to-hf-spaces.yml +59 -0
  13. .github/workflows/docker-build.yaml +477 -0
  14. .github/workflows/format-backend.yaml +39 -0
  15. .github/workflows/format-build-frontend.yaml +57 -0
  16. .github/workflows/integration-test.yml +253 -0
  17. .github/workflows/lint-backend.disabled +27 -0
  18. .github/workflows/lint-frontend.disabled +21 -0
  19. .github/workflows/release-pypi.yml +32 -0
  20. .gitignore +309 -0
  21. .npmrc +1 -0
  22. .prettierignore +316 -0
  23. .prettierrc +9 -0
  24. CHANGELOG.md +1159 -0
  25. CODE_OF_CONDUCT.md +77 -0
  26. Caddyfile.localhost +64 -0
  27. Dockerfile +166 -0
  28. INSTALLATION.md +35 -0
  29. LICENSE +21 -0
  30. Layerfile +22 -0
  31. Makefile +33 -0
  32. README.md +231 -0
  33. TROUBLESHOOTING.md +36 -0
  34. backend/.dockerignore +14 -0
  35. backend/.gitignore +12 -0
  36. backend/dev.sh +2 -0
  37. backend/open_webui/__init__.py +77 -0
  38. backend/open_webui/alembic.ini +114 -0
  39. backend/open_webui/apps/audio/main.py +624 -0
  40. backend/open_webui/apps/images/main.py +597 -0
  41. backend/open_webui/apps/images/utils/comfyui.py +174 -0
  42. backend/open_webui/apps/ollama/main.py +1146 -0
  43. backend/open_webui/apps/openai/main.py +553 -0
  44. backend/open_webui/apps/retrieval/loaders/main.py +190 -0
  45. backend/open_webui/apps/retrieval/main.py +1317 -0
  46. backend/open_webui/apps/retrieval/models/colbert.py +81 -0
  47. backend/open_webui/apps/retrieval/utils.py +538 -0
  48. backend/open_webui/apps/retrieval/vector/connector.py +10 -0
  49. backend/open_webui/apps/retrieval/vector/dbs/chroma.py +157 -0
  50. backend/open_webui/apps/retrieval/vector/dbs/milvus.py +286 -0
.dockerignore ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .github
2
+ .DS_Store
3
+ docs
4
+ kubernetes
5
+ node_modules
6
+ /.svelte-kit
7
+ /package
8
+ .env
9
+ .env.*
10
+ vite.config.js.timestamp-*
11
+ vite.config.ts.timestamp-*
12
+ __pycache__
13
+ .idea
14
+ venv
15
+ _old
16
+ uploads
17
+ .ipynb_checkpoints
18
+ **/*.db
19
+ _test
.env.example ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ollama URL for the backend to connect
2
+ # The path '/ollama' will be redirected to the specified backend URL
3
+ OLLAMA_BASE_URL='http://localhost:11434'
4
+
5
+ OPENAI_API_BASE_URL=''
6
+ OPENAI_API_KEY=''
7
+
8
+ # AUTOMATIC1111_BASE_URL="http://localhost:7860"
9
+
10
+ # DO NOT TRACK
11
+ SCARF_NO_ANALYTICS=true
12
+ DO_NOT_TRACK=true
13
+ ANONYMIZED_TELEMETRY=false
.eslintignore ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .DS_Store
2
+ node_modules
3
+ /build
4
+ /.svelte-kit
5
+ /package
6
+ .env
7
+ .env.*
8
+ !.env.example
9
+
10
+ # Ignore files for PNPM, NPM and YARN
11
+ pnpm-lock.yaml
12
+ package-lock.json
13
+ yarn.lock
.eslintrc.cjs ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ module.exports = {
2
+ root: true,
3
+ extends: [
4
+ 'eslint:recommended',
5
+ 'plugin:@typescript-eslint/recommended',
6
+ 'plugin:svelte/recommended',
7
+ 'plugin:cypress/recommended',
8
+ 'prettier'
9
+ ],
10
+ parser: '@typescript-eslint/parser',
11
+ plugins: ['@typescript-eslint'],
12
+ parserOptions: {
13
+ sourceType: 'module',
14
+ ecmaVersion: 2020,
15
+ extraFileExtensions: ['.svelte']
16
+ },
17
+ env: {
18
+ browser: true,
19
+ es2017: true,
20
+ node: true
21
+ },
22
+ overrides: [
23
+ {
24
+ files: ['*.svelte'],
25
+ parser: 'svelte-eslint-parser',
26
+ parserOptions: {
27
+ parser: '@typescript-eslint/parser'
28
+ }
29
+ }
30
+ ]
31
+ };
.gitattributes ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ *.sh text eol=lf
2
+ *.ttf filter=lfs diff=lfs merge=lfs -text
.github/FUNDING.yml ADDED
@@ -0,0 +1 @@
 
 
1
+ github: tjbck
.github/ISSUE_TEMPLATE/bug_report.md ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ name: Bug report
3
+ about: Create a report to help us improve
4
+ title: ''
5
+ labels: ''
6
+ assignees: ''
7
+ ---
8
+
9
+ # Bug Report
10
+
11
+ **Important: Before submitting a bug report, please check whether a similar issue or feature request has already been posted in the Issues or Discussions section. It's likely we're already tracking it. In case of uncertainty, initiate a discussion post first. This helps us all to efficiently focus on improving the project.**
12
+
13
+ **Let's collaborate respectfully. If you bring negativity, please understand our capacity to engage may be limited. If you're open to learning and communicating constructively, we're more than happy to assist you. Remember, Open WebUI is a volunteer-driven project maintained by a single maintainer, supported by our amazing contributors who also manage full-time jobs. We respect your time; please respect ours. If you have an issue, We highly encourage you to submit a pull request or to fork the project. We actively work to prevent contributor burnout to preserve the quality and continuity of Open WebUI.**
14
+
15
+ ## Installation Method
16
+
17
+ [Describe the method you used to install the project, e.g., git clone, Docker, pip, etc.]
18
+
19
+ ## Environment
20
+
21
+ - **Open WebUI Version:** [e.g., v0.3.11]
22
+ - **Ollama (if applicable):** [e.g., v0.2.0, v0.1.32-rc1]
23
+
24
+ - **Operating System:** [e.g., Windows 10, macOS Big Sur, Ubuntu 20.04]
25
+ - **Browser (if applicable):** [e.g., Chrome 100.0, Firefox 98.0]
26
+
27
+ **Confirmation:**
28
+
29
+ - [ ] I have read and followed all the instructions provided in the README.md.
30
+ - [ ] I am on the latest version of both Open WebUI and Ollama.
31
+ - [ ] I have included the browser console logs.
32
+ - [ ] I have included the Docker container logs.
33
+ - [ ] I have provided the exact steps to reproduce the bug in the "Steps to Reproduce" section below.
34
+
35
+ ## Expected Behavior:
36
+
37
+ [Describe what you expected to happen.]
38
+
39
+ ## Actual Behavior:
40
+
41
+ [Describe what actually happened.]
42
+
43
+ ## Description
44
+
45
+ **Bug Summary:**
46
+ [Provide a brief but clear summary of the bug]
47
+
48
+ ## Reproduction Details
49
+
50
+ **Steps to Reproduce:**
51
+ [Outline the steps to reproduce the bug. Be as detailed as possible.]
52
+
53
+ ## Logs and Screenshots
54
+
55
+ **Browser Console Logs:**
56
+ [Include relevant browser console logs, if applicable]
57
+
58
+ **Docker Container Logs:**
59
+ [Include relevant Docker container logs, if applicable]
60
+
61
+ **Screenshots/Screen Recordings (if applicable):**
62
+ [Attach any relevant screenshots to help illustrate the issue]
63
+
64
+ ## Additional Information
65
+
66
+ [Include any additional details that may help in understanding and reproducing the issue. This could include specific configurations, error messages, or anything else relevant to the bug.]
67
+
68
+ ## Note
69
+
70
+ If the bug report is incomplete or does not follow the provided instructions, it may not be addressed. Please ensure that you have followed the steps outlined in the README.md and troubleshooting.md documents, and provide all necessary information for us to reproduce and address the issue. Thank you!
.github/ISSUE_TEMPLATE/feature_request.md ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ name: Feature request
3
+ about: Suggest an idea for this project
4
+ title: ''
5
+ labels: ''
6
+ assignees: ''
7
+ ---
8
+
9
+ # Feature Request
10
+
11
+ **Important: Before submitting a feature request, please check whether a similar issue or feature request has already been posted in the Issues or Discussions section. It's likely we're already tracking it. In case of uncertainty, initiate a discussion post first. This helps us all to efficiently focus on improving the project.**
12
+
13
+ **Let's collaborate respectfully. If you bring negativity, please understand our capacity to engage may be limited. If you're open to learning and communicating constructively, we're more than happy to assist you. Remember, Open WebUI is a volunteer-driven project maintained by a single maintainer, supported by our amazing contributors who also manage full-time jobs. We respect your time; please respect ours. If you have an issue, We highly encourage you to submit a pull request or to fork the project. We actively work to prevent contributor burnout to preserve the quality and continuity of Open WebUI.**
14
+
15
+ **Is your feature request related to a problem? Please describe.**
16
+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
17
+
18
+ **Describe the solution you'd like**
19
+ A clear and concise description of what you want to happen.
20
+
21
+ **Describe alternatives you've considered**
22
+ A clear and concise description of any alternative solutions or features you've considered.
23
+
24
+ **Additional context**
25
+ Add any other context or screenshots about the feature request here.
.github/dependabot.yml ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: pip
4
+ directory: '/backend'
5
+ schedule:
6
+ interval: monthly
7
+ target-branch: 'dev'
8
+ - package-ecosystem: 'github-actions'
9
+ directory: '/'
10
+ schedule:
11
+ # Check for updates to GitHub Actions every week
12
+ interval: monthly
.github/pull_request_template.md ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Pull Request Checklist
2
+
3
+ ### Note to first-time contributors: Please open a discussion post in [Discussions](https://github.com/open-webui/open-webui/discussions) and describe your changes before submitting a pull request.
4
+
5
+ **Before submitting, make sure you've checked the following:**
6
+
7
+ - [ ] **Target branch:** Please verify that the pull request targets the `dev` branch.
8
+ - [ ] **Description:** Provide a concise description of the changes made in this pull request.
9
+ - [ ] **Changelog:** Ensure a changelog entry following the format of [Keep a Changelog](https://keepachangelog.com/) is added at the bottom of the PR description.
10
+ - [ ] **Documentation:** Have you updated relevant documentation [Open WebUI Docs](https://github.com/open-webui/docs), or other documentation sources?
11
+ - [ ] **Dependencies:** Are there any new dependencies? Have you updated the dependency versions in the documentation?
12
+ - [ ] **Testing:** Have you written and run sufficient tests for validating the changes?
13
+ - [ ] **Code review:** Have you performed a self-review of your code, addressing any coding standard issues and ensuring adherence to the project's coding standards?
14
+ - [ ] **Prefix:** To cleary categorize this pull request, prefix the pull request title, using one of the following:
15
+ - **BREAKING CHANGE**: Significant changes that may affect compatibility
16
+ - **build**: Changes that affect the build system or external dependencies
17
+ - **ci**: Changes to our continuous integration processes or workflows
18
+ - **chore**: Refactor, cleanup, or other non-functional code changes
19
+ - **docs**: Documentation update or addition
20
+ - **feat**: Introduces a new feature or enhancement to the codebase
21
+ - **fix**: Bug fix or error correction
22
+ - **i18n**: Internationalization or localization changes
23
+ - **perf**: Performance improvement
24
+ - **refactor**: Code restructuring for better maintainability, readability, or scalability
25
+ - **style**: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)
26
+ - **test**: Adding missing tests or correcting existing tests
27
+ - **WIP**: Work in progress, a temporary label for incomplete or ongoing work
28
+
29
+ # Changelog Entry
30
+
31
+ ### Description
32
+
33
+ - [Concisely describe the changes made in this pull request, including any relevant motivation and impact (e.g., fixing a bug, adding a feature, or improving performance)]
34
+
35
+ ### Added
36
+
37
+ - [List any new features, functionalities, or additions]
38
+
39
+ ### Changed
40
+
41
+ - [List any changes, updates, refactorings, or optimizations]
42
+
43
+ ### Deprecated
44
+
45
+ - [List any deprecated functionality or features that have been removed]
46
+
47
+ ### Removed
48
+
49
+ - [List any removed features, files, or functionalities]
50
+
51
+ ### Fixed
52
+
53
+ - [List any fixes, corrections, or bug fixes]
54
+
55
+ ### Security
56
+
57
+ - [List any new or updated security-related changes, including vulnerability fixes]
58
+
59
+ ### Breaking Changes
60
+
61
+ - **BREAKING CHANGE**: [List any breaking changes affecting compatibility or functionality]
62
+
63
+ ---
64
+
65
+ ### Additional Information
66
+
67
+ - [Insert any additional context, notes, or explanations for the changes]
68
+ - [Reference any related issues, commits, or other relevant information]
69
+
70
+ ### Screenshots or Videos
71
+
72
+ - [Attach any relevant screenshots or videos demonstrating the changes]
.github/workflows/build-release.yml ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Release
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main # or whatever branch you want to use
7
+
8
+ jobs:
9
+ release:
10
+ runs-on: ubuntu-latest
11
+
12
+ steps:
13
+ - name: Checkout repository
14
+ uses: actions/checkout@v4
15
+
16
+ - name: Check for changes in package.json
17
+ run: |
18
+ git diff --cached --diff-filter=d package.json || {
19
+ echo "No changes to package.json"
20
+ exit 1
21
+ }
22
+
23
+ - name: Get version number from package.json
24
+ id: get_version
25
+ run: |
26
+ VERSION=$(jq -r '.version' package.json)
27
+ echo "::set-output name=version::$VERSION"
28
+
29
+ - name: Extract latest CHANGELOG entry
30
+ id: changelog
31
+ run: |
32
+ CHANGELOG_CONTENT=$(awk 'BEGIN {print_section=0;} /^## \[/ {if (print_section == 0) {print_section=1;} else {exit;}} print_section {print;}' CHANGELOG.md)
33
+ CHANGELOG_ESCAPED=$(echo "$CHANGELOG_CONTENT" | sed ':a;N;$!ba;s/\n/%0A/g')
34
+ echo "Extracted latest release notes from CHANGELOG.md:"
35
+ echo -e "$CHANGELOG_CONTENT"
36
+ echo "::set-output name=content::$CHANGELOG_ESCAPED"
37
+
38
+ - name: Create GitHub release
39
+ uses: actions/github-script@v7
40
+ with:
41
+ github-token: ${{ secrets.GITHUB_TOKEN }}
42
+ script: |
43
+ const changelog = `${{ steps.changelog.outputs.content }}`;
44
+ const release = await github.rest.repos.createRelease({
45
+ owner: context.repo.owner,
46
+ repo: context.repo.repo,
47
+ tag_name: `v${{ steps.get_version.outputs.version }}`,
48
+ name: `v${{ steps.get_version.outputs.version }}`,
49
+ body: changelog,
50
+ })
51
+ console.log(`Created release ${release.data.html_url}`)
52
+
53
+ - name: Upload package to GitHub release
54
+ uses: actions/upload-artifact@v4
55
+ with:
56
+ name: package
57
+ path: |
58
+ .
59
+ !.git
60
+ env:
61
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
62
+
63
+ - name: Trigger Docker build workflow
64
+ uses: actions/github-script@v7
65
+ with:
66
+ script: |
67
+ github.rest.actions.createWorkflowDispatch({
68
+ owner: context.repo.owner,
69
+ repo: context.repo.repo,
70
+ workflow_id: 'docker-build.yaml',
71
+ ref: 'v${{ steps.get_version.outputs.version }}',
72
+ })
.github/workflows/deploy-to-hf-spaces.yml ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Deploy to HuggingFace Spaces
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - dev
7
+ - main
8
+ workflow_dispatch:
9
+
10
+ jobs:
11
+ check-secret:
12
+ runs-on: ubuntu-latest
13
+ outputs:
14
+ token-set: ${{ steps.check-key.outputs.defined }}
15
+ steps:
16
+ - id: check-key
17
+ env:
18
+ HF_TOKEN: ${{ secrets.HF_TOKEN }}
19
+ if: "${{ env.HF_TOKEN != '' }}"
20
+ run: echo "defined=true" >> $GITHUB_OUTPUT
21
+
22
+ deploy:
23
+ runs-on: ubuntu-latest
24
+ needs: [check-secret]
25
+ if: needs.check-secret.outputs.token-set == 'true'
26
+ env:
27
+ HF_TOKEN: ${{ secrets.HF_TOKEN }}
28
+ steps:
29
+ - name: Checkout repository
30
+ uses: actions/checkout@v4
31
+
32
+ - name: Remove git history
33
+ run: rm -rf .git
34
+
35
+ - name: Prepend YAML front matter to README.md
36
+ run: |
37
+ echo "---" > temp_readme.md
38
+ echo "title: Open WebUI" >> temp_readme.md
39
+ echo "emoji: 🐳" >> temp_readme.md
40
+ echo "colorFrom: purple" >> temp_readme.md
41
+ echo "colorTo: gray" >> temp_readme.md
42
+ echo "sdk: docker" >> temp_readme.md
43
+ echo "app_port: 8080" >> temp_readme.md
44
+ echo "---" >> temp_readme.md
45
+ cat README.md >> temp_readme.md
46
+ mv temp_readme.md README.md
47
+
48
+ - name: Configure git
49
+ run: |
50
+ git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
51
+ git config --global user.name "github-actions[bot]"
52
+ - name: Set up Git and push to Space
53
+ run: |
54
+ git init --initial-branch=main
55
+ git lfs track "*.ttf"
56
+ rm demo.gif
57
+ git add .
58
+ git commit -m "GitHub deploy: ${{ github.sha }}"
59
+ git push --force https://tang-x:${HF_TOKEN}@huggingface.co/spaces/tang-x/open-webui main
.github/workflows/docker-build.yaml ADDED
@@ -0,0 +1,477 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Create and publish Docker images with specific build args
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches:
7
+ - main
8
+ - dev
9
+ tags:
10
+ - v*
11
+
12
+ env:
13
+ REGISTRY: ghcr.io
14
+
15
+ jobs:
16
+ build-main-image:
17
+ runs-on: ubuntu-latest
18
+ permissions:
19
+ contents: read
20
+ packages: write
21
+ strategy:
22
+ fail-fast: false
23
+ matrix:
24
+ platform:
25
+ - linux/amd64
26
+ - linux/arm64
27
+
28
+ steps:
29
+ # GitHub Packages requires the entire repository name to be in lowercase
30
+ # although the repository owner has a lowercase username, this prevents some people from running actions after forking
31
+ - name: Set repository and image name to lowercase
32
+ run: |
33
+ echo "IMAGE_NAME=${IMAGE_NAME,,}" >>${GITHUB_ENV}
34
+ echo "FULL_IMAGE_NAME=ghcr.io/${IMAGE_NAME,,}" >>${GITHUB_ENV}
35
+ env:
36
+ IMAGE_NAME: '${{ github.repository }}'
37
+
38
+ - name: Prepare
39
+ run: |
40
+ platform=${{ matrix.platform }}
41
+ echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
42
+
43
+ - name: Checkout repository
44
+ uses: actions/checkout@v4
45
+
46
+ - name: Set up QEMU
47
+ uses: docker/setup-qemu-action@v3
48
+
49
+ - name: Set up Docker Buildx
50
+ uses: docker/setup-buildx-action@v3
51
+
52
+ - name: Log in to the Container registry
53
+ uses: docker/login-action@v3
54
+ with:
55
+ registry: ${{ env.REGISTRY }}
56
+ username: ${{ github.actor }}
57
+ password: ${{ secrets.GITHUB_TOKEN }}
58
+
59
+ - name: Extract metadata for Docker images (default latest tag)
60
+ id: meta
61
+ uses: docker/metadata-action@v5
62
+ with:
63
+ images: ${{ env.FULL_IMAGE_NAME }}
64
+ tags: |
65
+ type=ref,event=branch
66
+ type=ref,event=tag
67
+ type=sha,prefix=git-
68
+ type=semver,pattern={{version}}
69
+ type=semver,pattern={{major}}.{{minor}}
70
+ flavor: |
71
+ latest=${{ github.ref == 'refs/heads/main' }}
72
+
73
+ - name: Extract metadata for Docker cache
74
+ id: cache-meta
75
+ uses: docker/metadata-action@v5
76
+ with:
77
+ images: ${{ env.FULL_IMAGE_NAME }}
78
+ tags: |
79
+ type=ref,event=branch
80
+ ${{ github.ref_type == 'tag' && 'type=raw,value=main' || '' }}
81
+ flavor: |
82
+ prefix=cache-${{ matrix.platform }}-
83
+ latest=false
84
+
85
+ - name: Build Docker image (latest)
86
+ uses: docker/build-push-action@v5
87
+ id: build
88
+ with:
89
+ context: .
90
+ push: true
91
+ platforms: ${{ matrix.platform }}
92
+ labels: ${{ steps.meta.outputs.labels }}
93
+ outputs: type=image,name=${{ env.FULL_IMAGE_NAME }},push-by-digest=true,name-canonical=true,push=true
94
+ cache-from: type=registry,ref=${{ steps.cache-meta.outputs.tags }}
95
+ cache-to: type=registry,ref=${{ steps.cache-meta.outputs.tags }},mode=max
96
+ build-args: |
97
+ BUILD_HASH=${{ github.sha }}
98
+
99
+ - name: Export digest
100
+ run: |
101
+ mkdir -p /tmp/digests
102
+ digest="${{ steps.build.outputs.digest }}"
103
+ touch "/tmp/digests/${digest#sha256:}"
104
+
105
+ - name: Upload digest
106
+ uses: actions/upload-artifact@v4
107
+ with:
108
+ name: digests-main-${{ env.PLATFORM_PAIR }}
109
+ path: /tmp/digests/*
110
+ if-no-files-found: error
111
+ retention-days: 1
112
+
113
+ build-cuda-image:
114
+ runs-on: ubuntu-latest
115
+ permissions:
116
+ contents: read
117
+ packages: write
118
+ strategy:
119
+ fail-fast: false
120
+ matrix:
121
+ platform:
122
+ - linux/amd64
123
+ - linux/arm64
124
+
125
+ steps:
126
+ # GitHub Packages requires the entire repository name to be in lowercase
127
+ # although the repository owner has a lowercase username, this prevents some people from running actions after forking
128
+ - name: Set repository and image name to lowercase
129
+ run: |
130
+ echo "IMAGE_NAME=${IMAGE_NAME,,}" >>${GITHUB_ENV}
131
+ echo "FULL_IMAGE_NAME=ghcr.io/${IMAGE_NAME,,}" >>${GITHUB_ENV}
132
+ env:
133
+ IMAGE_NAME: '${{ github.repository }}'
134
+
135
+ - name: Prepare
136
+ run: |
137
+ platform=${{ matrix.platform }}
138
+ echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
139
+
140
+ - name: Checkout repository
141
+ uses: actions/checkout@v4
142
+
143
+ - name: Set up QEMU
144
+ uses: docker/setup-qemu-action@v3
145
+
146
+ - name: Set up Docker Buildx
147
+ uses: docker/setup-buildx-action@v3
148
+
149
+ - name: Log in to the Container registry
150
+ uses: docker/login-action@v3
151
+ with:
152
+ registry: ${{ env.REGISTRY }}
153
+ username: ${{ github.actor }}
154
+ password: ${{ secrets.GITHUB_TOKEN }}
155
+
156
+ - name: Extract metadata for Docker images (cuda tag)
157
+ id: meta
158
+ uses: docker/metadata-action@v5
159
+ with:
160
+ images: ${{ env.FULL_IMAGE_NAME }}
161
+ tags: |
162
+ type=ref,event=branch
163
+ type=ref,event=tag
164
+ type=sha,prefix=git-
165
+ type=semver,pattern={{version}}
166
+ type=semver,pattern={{major}}.{{minor}}
167
+ type=raw,enable=${{ github.ref == 'refs/heads/main' }},prefix=,suffix=,value=cuda
168
+ flavor: |
169
+ latest=${{ github.ref == 'refs/heads/main' }}
170
+ suffix=-cuda,onlatest=true
171
+
172
+ - name: Extract metadata for Docker cache
173
+ id: cache-meta
174
+ uses: docker/metadata-action@v5
175
+ with:
176
+ images: ${{ env.FULL_IMAGE_NAME }}
177
+ tags: |
178
+ type=ref,event=branch
179
+ ${{ github.ref_type == 'tag' && 'type=raw,value=main' || '' }}
180
+ flavor: |
181
+ prefix=cache-cuda-${{ matrix.platform }}-
182
+ latest=false
183
+
184
+ - name: Build Docker image (cuda)
185
+ uses: docker/build-push-action@v5
186
+ id: build
187
+ with:
188
+ context: .
189
+ push: true
190
+ platforms: ${{ matrix.platform }}
191
+ labels: ${{ steps.meta.outputs.labels }}
192
+ outputs: type=image,name=${{ env.FULL_IMAGE_NAME }},push-by-digest=true,name-canonical=true,push=true
193
+ cache-from: type=registry,ref=${{ steps.cache-meta.outputs.tags }}
194
+ cache-to: type=registry,ref=${{ steps.cache-meta.outputs.tags }},mode=max
195
+ build-args: |
196
+ BUILD_HASH=${{ github.sha }}
197
+ USE_CUDA=true
198
+
199
+ - name: Export digest
200
+ run: |
201
+ mkdir -p /tmp/digests
202
+ digest="${{ steps.build.outputs.digest }}"
203
+ touch "/tmp/digests/${digest#sha256:}"
204
+
205
+ - name: Upload digest
206
+ uses: actions/upload-artifact@v4
207
+ with:
208
+ name: digests-cuda-${{ env.PLATFORM_PAIR }}
209
+ path: /tmp/digests/*
210
+ if-no-files-found: error
211
+ retention-days: 1
212
+
213
+ build-ollama-image:
214
+ runs-on: ubuntu-latest
215
+ permissions:
216
+ contents: read
217
+ packages: write
218
+ strategy:
219
+ fail-fast: false
220
+ matrix:
221
+ platform:
222
+ - linux/amd64
223
+ - linux/arm64
224
+
225
+ steps:
226
+ # GitHub Packages requires the entire repository name to be in lowercase
227
+ # although the repository owner has a lowercase username, this prevents some people from running actions after forking
228
+ - name: Set repository and image name to lowercase
229
+ run: |
230
+ echo "IMAGE_NAME=${IMAGE_NAME,,}" >>${GITHUB_ENV}
231
+ echo "FULL_IMAGE_NAME=ghcr.io/${IMAGE_NAME,,}" >>${GITHUB_ENV}
232
+ env:
233
+ IMAGE_NAME: '${{ github.repository }}'
234
+
235
+ - name: Prepare
236
+ run: |
237
+ platform=${{ matrix.platform }}
238
+ echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
239
+
240
+ - name: Checkout repository
241
+ uses: actions/checkout@v4
242
+
243
+ - name: Set up QEMU
244
+ uses: docker/setup-qemu-action@v3
245
+
246
+ - name: Set up Docker Buildx
247
+ uses: docker/setup-buildx-action@v3
248
+
249
+ - name: Log in to the Container registry
250
+ uses: docker/login-action@v3
251
+ with:
252
+ registry: ${{ env.REGISTRY }}
253
+ username: ${{ github.actor }}
254
+ password: ${{ secrets.GITHUB_TOKEN }}
255
+
256
+ - name: Extract metadata for Docker images (ollama tag)
257
+ id: meta
258
+ uses: docker/metadata-action@v5
259
+ with:
260
+ images: ${{ env.FULL_IMAGE_NAME }}
261
+ tags: |
262
+ type=ref,event=branch
263
+ type=ref,event=tag
264
+ type=sha,prefix=git-
265
+ type=semver,pattern={{version}}
266
+ type=semver,pattern={{major}}.{{minor}}
267
+ type=raw,enable=${{ github.ref == 'refs/heads/main' }},prefix=,suffix=,value=ollama
268
+ flavor: |
269
+ latest=${{ github.ref == 'refs/heads/main' }}
270
+ suffix=-ollama,onlatest=true
271
+
272
+ - name: Extract metadata for Docker cache
273
+ id: cache-meta
274
+ uses: docker/metadata-action@v5
275
+ with:
276
+ images: ${{ env.FULL_IMAGE_NAME }}
277
+ tags: |
278
+ type=ref,event=branch
279
+ ${{ github.ref_type == 'tag' && 'type=raw,value=main' || '' }}
280
+ flavor: |
281
+ prefix=cache-ollama-${{ matrix.platform }}-
282
+ latest=false
283
+
284
+ - name: Build Docker image (ollama)
285
+ uses: docker/build-push-action@v5
286
+ id: build
287
+ with:
288
+ context: .
289
+ push: true
290
+ platforms: ${{ matrix.platform }}
291
+ labels: ${{ steps.meta.outputs.labels }}
292
+ outputs: type=image,name=${{ env.FULL_IMAGE_NAME }},push-by-digest=true,name-canonical=true,push=true
293
+ cache-from: type=registry,ref=${{ steps.cache-meta.outputs.tags }}
294
+ cache-to: type=registry,ref=${{ steps.cache-meta.outputs.tags }},mode=max
295
+ build-args: |
296
+ BUILD_HASH=${{ github.sha }}
297
+ USE_OLLAMA=true
298
+
299
+ - name: Export digest
300
+ run: |
301
+ mkdir -p /tmp/digests
302
+ digest="${{ steps.build.outputs.digest }}"
303
+ touch "/tmp/digests/${digest#sha256:}"
304
+
305
+ - name: Upload digest
306
+ uses: actions/upload-artifact@v4
307
+ with:
308
+ name: digests-ollama-${{ env.PLATFORM_PAIR }}
309
+ path: /tmp/digests/*
310
+ if-no-files-found: error
311
+ retention-days: 1
312
+
313
+ merge-main-images:
314
+ runs-on: ubuntu-latest
315
+ needs: [build-main-image]
316
+ steps:
317
+ # GitHub Packages requires the entire repository name to be in lowercase
318
+ # although the repository owner has a lowercase username, this prevents some people from running actions after forking
319
+ - name: Set repository and image name to lowercase
320
+ run: |
321
+ echo "IMAGE_NAME=${IMAGE_NAME,,}" >>${GITHUB_ENV}
322
+ echo "FULL_IMAGE_NAME=ghcr.io/${IMAGE_NAME,,}" >>${GITHUB_ENV}
323
+ env:
324
+ IMAGE_NAME: '${{ github.repository }}'
325
+
326
+ - name: Download digests
327
+ uses: actions/download-artifact@v4
328
+ with:
329
+ pattern: digests-main-*
330
+ path: /tmp/digests
331
+ merge-multiple: true
332
+
333
+ - name: Set up Docker Buildx
334
+ uses: docker/setup-buildx-action@v3
335
+
336
+ - name: Log in to the Container registry
337
+ uses: docker/login-action@v3
338
+ with:
339
+ registry: ${{ env.REGISTRY }}
340
+ username: ${{ github.actor }}
341
+ password: ${{ secrets.GITHUB_TOKEN }}
342
+
343
+ - name: Extract metadata for Docker images (default latest tag)
344
+ id: meta
345
+ uses: docker/metadata-action@v5
346
+ with:
347
+ images: ${{ env.FULL_IMAGE_NAME }}
348
+ tags: |
349
+ type=ref,event=branch
350
+ type=ref,event=tag
351
+ type=sha,prefix=git-
352
+ type=semver,pattern={{version}}
353
+ type=semver,pattern={{major}}.{{minor}}
354
+ flavor: |
355
+ latest=${{ github.ref == 'refs/heads/main' }}
356
+
357
+ - name: Create manifest list and push
358
+ working-directory: /tmp/digests
359
+ run: |
360
+ docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
361
+ $(printf '${{ env.FULL_IMAGE_NAME }}@sha256:%s ' *)
362
+
363
+ - name: Inspect image
364
+ run: |
365
+ docker buildx imagetools inspect ${{ env.FULL_IMAGE_NAME }}:${{ steps.meta.outputs.version }}
366
+
367
+ merge-cuda-images:
368
+ runs-on: ubuntu-latest
369
+ needs: [build-cuda-image]
370
+ steps:
371
+ # GitHub Packages requires the entire repository name to be in lowercase
372
+ # although the repository owner has a lowercase username, this prevents some people from running actions after forking
373
+ - name: Set repository and image name to lowercase
374
+ run: |
375
+ echo "IMAGE_NAME=${IMAGE_NAME,,}" >>${GITHUB_ENV}
376
+ echo "FULL_IMAGE_NAME=ghcr.io/${IMAGE_NAME,,}" >>${GITHUB_ENV}
377
+ env:
378
+ IMAGE_NAME: '${{ github.repository }}'
379
+
380
+ - name: Download digests
381
+ uses: actions/download-artifact@v4
382
+ with:
383
+ pattern: digests-cuda-*
384
+ path: /tmp/digests
385
+ merge-multiple: true
386
+
387
+ - name: Set up Docker Buildx
388
+ uses: docker/setup-buildx-action@v3
389
+
390
+ - name: Log in to the Container registry
391
+ uses: docker/login-action@v3
392
+ with:
393
+ registry: ${{ env.REGISTRY }}
394
+ username: ${{ github.actor }}
395
+ password: ${{ secrets.GITHUB_TOKEN }}
396
+
397
+ - name: Extract metadata for Docker images (default latest tag)
398
+ id: meta
399
+ uses: docker/metadata-action@v5
400
+ with:
401
+ images: ${{ env.FULL_IMAGE_NAME }}
402
+ tags: |
403
+ type=ref,event=branch
404
+ type=ref,event=tag
405
+ type=sha,prefix=git-
406
+ type=semver,pattern={{version}}
407
+ type=semver,pattern={{major}}.{{minor}}
408
+ type=raw,enable=${{ github.ref == 'refs/heads/main' }},prefix=,suffix=,value=cuda
409
+ flavor: |
410
+ latest=${{ github.ref == 'refs/heads/main' }}
411
+ suffix=-cuda,onlatest=true
412
+
413
+ - name: Create manifest list and push
414
+ working-directory: /tmp/digests
415
+ run: |
416
+ docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
417
+ $(printf '${{ env.FULL_IMAGE_NAME }}@sha256:%s ' *)
418
+
419
+ - name: Inspect image
420
+ run: |
421
+ docker buildx imagetools inspect ${{ env.FULL_IMAGE_NAME }}:${{ steps.meta.outputs.version }}
422
+
423
+ merge-ollama-images:
424
+ runs-on: ubuntu-latest
425
+ needs: [build-ollama-image]
426
+ steps:
427
+ # GitHub Packages requires the entire repository name to be in lowercase
428
+ # although the repository owner has a lowercase username, this prevents some people from running actions after forking
429
+ - name: Set repository and image name to lowercase
430
+ run: |
431
+ echo "IMAGE_NAME=${IMAGE_NAME,,}" >>${GITHUB_ENV}
432
+ echo "FULL_IMAGE_NAME=ghcr.io/${IMAGE_NAME,,}" >>${GITHUB_ENV}
433
+ env:
434
+ IMAGE_NAME: '${{ github.repository }}'
435
+
436
+ - name: Download digests
437
+ uses: actions/download-artifact@v4
438
+ with:
439
+ pattern: digests-ollama-*
440
+ path: /tmp/digests
441
+ merge-multiple: true
442
+
443
+ - name: Set up Docker Buildx
444
+ uses: docker/setup-buildx-action@v3
445
+
446
+ - name: Log in to the Container registry
447
+ uses: docker/login-action@v3
448
+ with:
449
+ registry: ${{ env.REGISTRY }}
450
+ username: ${{ github.actor }}
451
+ password: ${{ secrets.GITHUB_TOKEN }}
452
+
453
+ - name: Extract metadata for Docker images (default ollama tag)
454
+ id: meta
455
+ uses: docker/metadata-action@v5
456
+ with:
457
+ images: ${{ env.FULL_IMAGE_NAME }}
458
+ tags: |
459
+ type=ref,event=branch
460
+ type=ref,event=tag
461
+ type=sha,prefix=git-
462
+ type=semver,pattern={{version}}
463
+ type=semver,pattern={{major}}.{{minor}}
464
+ type=raw,enable=${{ github.ref == 'refs/heads/main' }},prefix=,suffix=,value=ollama
465
+ flavor: |
466
+ latest=${{ github.ref == 'refs/heads/main' }}
467
+ suffix=-ollama,onlatest=true
468
+
469
+ - name: Create manifest list and push
470
+ working-directory: /tmp/digests
471
+ run: |
472
+ docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
473
+ $(printf '${{ env.FULL_IMAGE_NAME }}@sha256:%s ' *)
474
+
475
+ - name: Inspect image
476
+ run: |
477
+ docker buildx imagetools inspect ${{ env.FULL_IMAGE_NAME }}:${{ steps.meta.outputs.version }}
.github/workflows/format-backend.yaml ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Python CI
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - dev
8
+ pull_request:
9
+ branches:
10
+ - main
11
+ - dev
12
+
13
+ jobs:
14
+ build:
15
+ name: 'Format Backend'
16
+ runs-on: ubuntu-latest
17
+
18
+ strategy:
19
+ matrix:
20
+ python-version: [3.11]
21
+
22
+ steps:
23
+ - uses: actions/checkout@v4
24
+
25
+ - name: Set up Python
26
+ uses: actions/setup-python@v5
27
+ with:
28
+ python-version: ${{ matrix.python-version }}
29
+
30
+ - name: Install dependencies
31
+ run: |
32
+ python -m pip install --upgrade pip
33
+ pip install black
34
+
35
+ - name: Format backend
36
+ run: npm run format:backend
37
+
38
+ - name: Check for changes after format
39
+ run: git diff --exit-code
.github/workflows/format-build-frontend.yaml ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Frontend Build
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - dev
8
+ pull_request:
9
+ branches:
10
+ - main
11
+ - dev
12
+
13
+ jobs:
14
+ build:
15
+ name: 'Format & Build Frontend'
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Checkout Repository
19
+ uses: actions/checkout@v4
20
+
21
+ - name: Setup Node.js
22
+ uses: actions/setup-node@v4
23
+ with:
24
+ node-version: '22' # Or specify any other version you want to use
25
+
26
+ - name: Install Dependencies
27
+ run: npm install
28
+
29
+ - name: Format Frontend
30
+ run: npm run format
31
+
32
+ - name: Run i18next
33
+ run: npm run i18n:parse
34
+
35
+ - name: Check for Changes After Format
36
+ run: git diff --exit-code
37
+
38
+ - name: Build Frontend
39
+ run: npm run build
40
+
41
+ test-frontend:
42
+ name: 'Frontend Unit Tests'
43
+ runs-on: ubuntu-latest
44
+ steps:
45
+ - name: Checkout Repository
46
+ uses: actions/checkout@v4
47
+
48
+ - name: Setup Node.js
49
+ uses: actions/setup-node@v4
50
+ with:
51
+ node-version: '22'
52
+
53
+ - name: Install Dependencies
54
+ run: npm ci
55
+
56
+ - name: Run vitest
57
+ run: npm run test:frontend
.github/workflows/integration-test.yml ADDED
@@ -0,0 +1,253 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Integration Test
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - dev
8
+ pull_request:
9
+ branches:
10
+ - main
11
+ - dev
12
+
13
+ jobs:
14
+ cypress-run:
15
+ name: Run Cypress Integration Tests
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Maximize build space
19
+ uses: AdityaGarg8/[email protected]
20
+ with:
21
+ remove-android: 'true'
22
+ remove-haskell: 'true'
23
+ remove-codeql: 'true'
24
+
25
+ - name: Checkout Repository
26
+ uses: actions/checkout@v4
27
+
28
+ - name: Build and run Compose Stack
29
+ run: |
30
+ docker compose \
31
+ --file docker-compose.yaml \
32
+ --file docker-compose.api.yaml \
33
+ --file docker-compose.a1111-test.yaml \
34
+ up --detach --build
35
+
36
+ - name: Delete Docker build cache
37
+ run: |
38
+ docker builder prune --all --force
39
+
40
+ - name: Wait for Ollama to be up
41
+ timeout-minutes: 5
42
+ run: |
43
+ until curl --output /dev/null --silent --fail http://localhost:11434; do
44
+ printf '.'
45
+ sleep 1
46
+ done
47
+ echo "Service is up!"
48
+
49
+ - name: Preload Ollama model
50
+ run: |
51
+ docker exec ollama ollama pull qwen:0.5b-chat-v1.5-q2_K
52
+
53
+ - name: Cypress run
54
+ uses: cypress-io/github-action@v6
55
+ with:
56
+ browser: chrome
57
+ wait-on: 'http://localhost:3000'
58
+ config: baseUrl=http://localhost:3000
59
+
60
+ - uses: actions/upload-artifact@v4
61
+ if: always()
62
+ name: Upload Cypress videos
63
+ with:
64
+ name: cypress-videos
65
+ path: cypress/videos
66
+ if-no-files-found: ignore
67
+
68
+ - name: Extract Compose logs
69
+ if: always()
70
+ run: |
71
+ docker compose logs > compose-logs.txt
72
+
73
+ - uses: actions/upload-artifact@v4
74
+ if: always()
75
+ name: Upload Compose logs
76
+ with:
77
+ name: compose-logs
78
+ path: compose-logs.txt
79
+ if-no-files-found: ignore
80
+
81
+ # pytest:
82
+ # name: Run Backend Tests
83
+ # runs-on: ubuntu-latest
84
+ # steps:
85
+ # - uses: actions/checkout@v4
86
+
87
+ # - name: Set up Python
88
+ # uses: actions/setup-python@v5
89
+ # with:
90
+ # python-version: ${{ matrix.python-version }}
91
+
92
+ # - name: Install dependencies
93
+ # run: |
94
+ # python -m pip install --upgrade pip
95
+ # pip install -r backend/requirements.txt
96
+
97
+ # - name: pytest run
98
+ # run: |
99
+ # ls -al
100
+ # cd backend
101
+ # PYTHONPATH=. pytest . -o log_cli=true -o log_cli_level=INFO
102
+
103
+ migration_test:
104
+ name: Run Migration Tests
105
+ runs-on: ubuntu-latest
106
+ services:
107
+ postgres:
108
+ image: postgres
109
+ env:
110
+ POSTGRES_PASSWORD: postgres
111
+ options: >-
112
+ --health-cmd pg_isready
113
+ --health-interval 10s
114
+ --health-timeout 5s
115
+ --health-retries 5
116
+ ports:
117
+ - 5432:5432
118
+ # mysql:
119
+ # image: mysql
120
+ # env:
121
+ # MYSQL_ROOT_PASSWORD: mysql
122
+ # MYSQL_DATABASE: mysql
123
+ # options: >-
124
+ # --health-cmd "mysqladmin ping -h localhost"
125
+ # --health-interval 10s
126
+ # --health-timeout 5s
127
+ # --health-retries 5
128
+ # ports:
129
+ # - 3306:3306
130
+ steps:
131
+ - name: Checkout Repository
132
+ uses: actions/checkout@v4
133
+
134
+ - name: Set up Python
135
+ uses: actions/setup-python@v5
136
+ with:
137
+ python-version: ${{ matrix.python-version }}
138
+
139
+ - name: Set up uv
140
+ uses: yezz123/setup-uv@v4
141
+ with:
142
+ uv-venv: venv
143
+
144
+ - name: Activate virtualenv
145
+ run: |
146
+ . venv/bin/activate
147
+ echo PATH=$PATH >> $GITHUB_ENV
148
+
149
+ - name: Install dependencies
150
+ run: |
151
+ uv pip install -r backend/requirements.txt
152
+
153
+ - name: Test backend with SQLite
154
+ id: sqlite
155
+ env:
156
+ WEBUI_SECRET_KEY: secret-key
157
+ GLOBAL_LOG_LEVEL: debug
158
+ run: |
159
+ cd backend
160
+ uvicorn open_webui.main:app --port "8080" --forwarded-allow-ips '*' &
161
+ UVICORN_PID=$!
162
+ # Wait up to 40 seconds for the server to start
163
+ for i in {1..40}; do
164
+ curl -s http://localhost:8080/api/config > /dev/null && break
165
+ sleep 1
166
+ if [ $i -eq 40 ]; then
167
+ echo "Server failed to start"
168
+ kill -9 $UVICORN_PID
169
+ exit 1
170
+ fi
171
+ done
172
+ # Check that the server is still running after 5 seconds
173
+ sleep 5
174
+ if ! kill -0 $UVICORN_PID; then
175
+ echo "Server has stopped"
176
+ exit 1
177
+ fi
178
+
179
+ - name: Test backend with Postgres
180
+ if: success() || steps.sqlite.conclusion == 'failure'
181
+ env:
182
+ WEBUI_SECRET_KEY: secret-key
183
+ GLOBAL_LOG_LEVEL: debug
184
+ DATABASE_URL: postgresql://postgres:postgres@localhost:5432/postgres
185
+ DATABASE_POOL_SIZE: 10
186
+ DATABASE_POOL_MAX_OVERFLOW: 10
187
+ DATABASE_POOL_TIMEOUT: 30
188
+ run: |
189
+ cd backend
190
+ uvicorn open_webui.main:app --port "8081" --forwarded-allow-ips '*' &
191
+ UVICORN_PID=$!
192
+ # Wait up to 20 seconds for the server to start
193
+ for i in {1..20}; do
194
+ curl -s http://localhost:8081/api/config > /dev/null && break
195
+ sleep 1
196
+ if [ $i -eq 20 ]; then
197
+ echo "Server failed to start"
198
+ kill -9 $UVICORN_PID
199
+ exit 1
200
+ fi
201
+ done
202
+ # Check that the server is still running after 5 seconds
203
+ sleep 5
204
+ if ! kill -0 $UVICORN_PID; then
205
+ echo "Server has stopped"
206
+ exit 1
207
+ fi
208
+
209
+ # Check that service will reconnect to postgres when connection will be closed
210
+ status_code=$(curl --write-out %{http_code} -s --output /dev/null http://localhost:8081/health/db)
211
+ if [[ "$status_code" -ne 200 ]] ; then
212
+ echo "Server has failed before postgres reconnect check"
213
+ exit 1
214
+ fi
215
+
216
+ echo "Terminating all connections to postgres..."
217
+ python -c "import os, psycopg2 as pg2; \
218
+ conn = pg2.connect(dsn=os.environ['DATABASE_URL'].replace('+pool', '')); \
219
+ cur = conn.cursor(); \
220
+ cur.execute('SELECT pg_terminate_backend(psa.pid) FROM pg_stat_activity psa WHERE datname = current_database() AND pid <> pg_backend_pid();')"
221
+
222
+ status_code=$(curl --write-out %{http_code} -s --output /dev/null http://localhost:8081/health/db)
223
+ if [[ "$status_code" -ne 200 ]] ; then
224
+ echo "Server has not reconnected to postgres after connection was closed: returned status $status_code"
225
+ exit 1
226
+ fi
227
+
228
+ # - name: Test backend with MySQL
229
+ # if: success() || steps.sqlite.conclusion == 'failure' || steps.postgres.conclusion == 'failure'
230
+ # env:
231
+ # WEBUI_SECRET_KEY: secret-key
232
+ # GLOBAL_LOG_LEVEL: debug
233
+ # DATABASE_URL: mysql://root:mysql@localhost:3306/mysql
234
+ # run: |
235
+ # cd backend
236
+ # uvicorn open_webui.main:app --port "8083" --forwarded-allow-ips '*' &
237
+ # UVICORN_PID=$!
238
+ # # Wait up to 20 seconds for the server to start
239
+ # for i in {1..20}; do
240
+ # curl -s http://localhost:8083/api/config > /dev/null && break
241
+ # sleep 1
242
+ # if [ $i -eq 20 ]; then
243
+ # echo "Server failed to start"
244
+ # kill -9 $UVICORN_PID
245
+ # exit 1
246
+ # fi
247
+ # done
248
+ # # Check that the server is still running after 5 seconds
249
+ # sleep 5
250
+ # if ! kill -0 $UVICORN_PID; then
251
+ # echo "Server has stopped"
252
+ # exit 1
253
+ # fi
.github/workflows/lint-backend.disabled ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Python CI
2
+ on:
3
+ push:
4
+ branches: ['main']
5
+ pull_request:
6
+ jobs:
7
+ build:
8
+ name: 'Lint Backend'
9
+ env:
10
+ PUBLIC_API_BASE_URL: ''
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ node-version:
15
+ - latest
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - name: Use Python
19
+ uses: actions/setup-python@v5
20
+ - name: Use Bun
21
+ uses: oven-sh/setup-bun@v1
22
+ - name: Install dependencies
23
+ run: |
24
+ python -m pip install --upgrade pip
25
+ pip install pylint
26
+ - name: Lint backend
27
+ run: bun run lint:backend
.github/workflows/lint-frontend.disabled ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Bun CI
2
+ on:
3
+ push:
4
+ branches: ['main']
5
+ pull_request:
6
+ jobs:
7
+ build:
8
+ name: 'Lint Frontend'
9
+ env:
10
+ PUBLIC_API_BASE_URL: ''
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - name: Use Bun
15
+ uses: oven-sh/setup-bun@v1
16
+ - run: bun --version
17
+ - name: Install frontend dependencies
18
+ run: bun install --frozen-lockfile
19
+ - run: bun run lint:frontend
20
+ - run: bun run lint:types
21
+ if: success() || failure()
.github/workflows/release-pypi.yml ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Release to PyPI
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main # or whatever branch you want to use
7
+ - pypi-release
8
+
9
+ jobs:
10
+ release:
11
+ runs-on: ubuntu-latest
12
+ environment:
13
+ name: pypi
14
+ url: https://pypi.org/p/open-webui
15
+ permissions:
16
+ id-token: write
17
+ steps:
18
+ - name: Checkout repository
19
+ uses: actions/checkout@v4
20
+ - uses: actions/setup-node@v4
21
+ with:
22
+ node-version: 18
23
+ - uses: actions/setup-python@v5
24
+ with:
25
+ python-version: 3.11
26
+ - name: Build
27
+ run: |
28
+ python -m pip install --upgrade pip
29
+ pip install build
30
+ python -m build .
31
+ - name: Publish package distributions to PyPI
32
+ uses: pypa/gh-action-pypi-publish@release/v1
.gitignore ADDED
@@ -0,0 +1,309 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .DS_Store
2
+ node_modules
3
+ /build
4
+ /.svelte-kit
5
+ /package
6
+ .env
7
+ .env.*
8
+ !.env.example
9
+ vite.config.js.timestamp-*
10
+ vite.config.ts.timestamp-*
11
+ # Byte-compiled / optimized / DLL files
12
+ __pycache__/
13
+ *.py[cod]
14
+ *$py.class
15
+
16
+ # C extensions
17
+ *.so
18
+
19
+ # Pyodide distribution
20
+ static/pyodide/*
21
+ !static/pyodide/pyodide-lock.json
22
+
23
+ # Distribution / packaging
24
+ .Python
25
+ build/
26
+ develop-eggs/
27
+ dist/
28
+ downloads/
29
+ eggs/
30
+ .eggs/
31
+ lib64/
32
+ parts/
33
+ sdist/
34
+ var/
35
+ wheels/
36
+ share/python-wheels/
37
+ *.egg-info/
38
+ .installed.cfg
39
+ *.egg
40
+ MANIFEST
41
+
42
+ # PyInstaller
43
+ # Usually these files are written by a python script from a template
44
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
45
+ *.manifest
46
+ *.spec
47
+
48
+ # Installer logs
49
+ pip-log.txt
50
+ pip-delete-this-directory.txt
51
+
52
+ # Unit test / coverage reports
53
+ htmlcov/
54
+ .tox/
55
+ .nox/
56
+ .coverage
57
+ .coverage.*
58
+ .cache
59
+ nosetests.xml
60
+ coverage.xml
61
+ *.cover
62
+ *.py,cover
63
+ .hypothesis/
64
+ .pytest_cache/
65
+ cover/
66
+
67
+ # Translations
68
+ *.mo
69
+ *.pot
70
+
71
+ # Django stuff:
72
+ *.log
73
+ local_settings.py
74
+ db.sqlite3
75
+ db.sqlite3-journal
76
+
77
+ # Flask stuff:
78
+ instance/
79
+ .webassets-cache
80
+
81
+ # Scrapy stuff:
82
+ .scrapy
83
+
84
+ # Sphinx documentation
85
+ docs/_build/
86
+
87
+ # PyBuilder
88
+ .pybuilder/
89
+ target/
90
+
91
+ # Jupyter Notebook
92
+ .ipynb_checkpoints
93
+
94
+ # IPython
95
+ profile_default/
96
+ ipython_config.py
97
+
98
+ # pyenv
99
+ # For a library or package, you might want to ignore these files since the code is
100
+ # intended to run in multiple environments; otherwise, check them in:
101
+ # .python-version
102
+
103
+ # pipenv
104
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
105
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
106
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
107
+ # install all needed dependencies.
108
+ #Pipfile.lock
109
+
110
+ # poetry
111
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
112
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
113
+ # commonly ignored for libraries.
114
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
115
+ #poetry.lock
116
+
117
+ # pdm
118
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
119
+ #pdm.lock
120
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
121
+ # in version control.
122
+ # https://pdm.fming.dev/#use-with-ide
123
+ .pdm.toml
124
+
125
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
126
+ __pypackages__/
127
+
128
+ # Celery stuff
129
+ celerybeat-schedule
130
+ celerybeat.pid
131
+
132
+ # SageMath parsed files
133
+ *.sage.py
134
+
135
+ # Environments
136
+ .env
137
+ .venv
138
+ env/
139
+ venv/
140
+ ENV/
141
+ env.bak/
142
+ venv.bak/
143
+
144
+ # Spyder project settings
145
+ .spyderproject
146
+ .spyproject
147
+
148
+ # Rope project settings
149
+ .ropeproject
150
+
151
+ # mkdocs documentation
152
+ /site
153
+
154
+ # mypy
155
+ .mypy_cache/
156
+ .dmypy.json
157
+ dmypy.json
158
+
159
+ # Pyre type checker
160
+ .pyre/
161
+
162
+ # pytype static type analyzer
163
+ .pytype/
164
+
165
+ # Cython debug symbols
166
+ cython_debug/
167
+
168
+ # PyCharm
169
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
170
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
171
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
172
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
173
+ .idea/
174
+
175
+ # Logs
176
+ logs
177
+ *.log
178
+ npm-debug.log*
179
+ yarn-debug.log*
180
+ yarn-error.log*
181
+ lerna-debug.log*
182
+ .pnpm-debug.log*
183
+
184
+ # Diagnostic reports (https://nodejs.org/api/report.html)
185
+ report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
186
+
187
+ # Runtime data
188
+ pids
189
+ *.pid
190
+ *.seed
191
+ *.pid.lock
192
+
193
+ # Directory for instrumented libs generated by jscoverage/JSCover
194
+ lib-cov
195
+
196
+ # Coverage directory used by tools like istanbul
197
+ coverage
198
+ *.lcov
199
+
200
+ # nyc test coverage
201
+ .nyc_output
202
+
203
+ # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
204
+ .grunt
205
+
206
+ # Bower dependency directory (https://bower.io/)
207
+ bower_components
208
+
209
+ # node-waf configuration
210
+ .lock-wscript
211
+
212
+ # Compiled binary addons (https://nodejs.org/api/addons.html)
213
+ build/Release
214
+
215
+ # Dependency directories
216
+ node_modules/
217
+ jspm_packages/
218
+
219
+ # Snowpack dependency directory (https://snowpack.dev/)
220
+ web_modules/
221
+
222
+ # TypeScript cache
223
+ *.tsbuildinfo
224
+
225
+ # Optional npm cache directory
226
+ .npm
227
+
228
+ # Optional eslint cache
229
+ .eslintcache
230
+
231
+ # Optional stylelint cache
232
+ .stylelintcache
233
+
234
+ # Microbundle cache
235
+ .rpt2_cache/
236
+ .rts2_cache_cjs/
237
+ .rts2_cache_es/
238
+ .rts2_cache_umd/
239
+
240
+ # Optional REPL history
241
+ .node_repl_history
242
+
243
+ # Output of 'npm pack'
244
+ *.tgz
245
+
246
+ # Yarn Integrity file
247
+ .yarn-integrity
248
+
249
+ # dotenv environment variable files
250
+ .env
251
+ .env.development.local
252
+ .env.test.local
253
+ .env.production.local
254
+ .env.local
255
+
256
+ # parcel-bundler cache (https://parceljs.org/)
257
+ .cache
258
+ .parcel-cache
259
+
260
+ # Next.js build output
261
+ .next
262
+ out
263
+
264
+ # Nuxt.js build / generate output
265
+ .nuxt
266
+ dist
267
+
268
+ # Gatsby files
269
+ .cache/
270
+ # Comment in the public line in if your project uses Gatsby and not Next.js
271
+ # https://nextjs.org/blog/next-9-1#public-directory-support
272
+ # public
273
+
274
+ # vuepress build output
275
+ .vuepress/dist
276
+
277
+ # vuepress v2.x temp and cache directory
278
+ .temp
279
+ .cache
280
+
281
+ # Docusaurus cache and generated files
282
+ .docusaurus
283
+
284
+ # Serverless directories
285
+ .serverless/
286
+
287
+ # FuseBox cache
288
+ .fusebox/
289
+
290
+ # DynamoDB Local files
291
+ .dynamodb/
292
+
293
+ # TernJS port file
294
+ .tern-port
295
+
296
+ # Stores VSCode versions used for testing VSCode extensions
297
+ .vscode-test
298
+
299
+ # yarn v2
300
+ .yarn/cache
301
+ .yarn/unplugged
302
+ .yarn/build-state.yml
303
+ .yarn/install-state.gz
304
+ .pnp.*
305
+
306
+ # cypress artifacts
307
+ cypress/videos
308
+ cypress/screenshots
309
+ .vscode/settings.json
.npmrc ADDED
@@ -0,0 +1 @@
 
 
1
+ engine-strict=true
.prettierignore ADDED
@@ -0,0 +1,316 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ignore files for PNPM, NPM and YARN
2
+ pnpm-lock.yaml
3
+ package-lock.json
4
+ yarn.lock
5
+
6
+ kubernetes/
7
+
8
+ # Copy of .gitignore
9
+ .DS_Store
10
+ node_modules
11
+ /build
12
+ /.svelte-kit
13
+ /package
14
+ .env
15
+ .env.*
16
+ !.env.example
17
+ vite.config.js.timestamp-*
18
+ vite.config.ts.timestamp-*
19
+ # Byte-compiled / optimized / DLL files
20
+ __pycache__/
21
+ *.py[cod]
22
+ *$py.class
23
+
24
+ # C extensions
25
+ *.so
26
+
27
+ # Distribution / packaging
28
+ .Python
29
+ build/
30
+ develop-eggs/
31
+ dist/
32
+ downloads/
33
+ eggs/
34
+ .eggs/
35
+ lib64/
36
+ parts/
37
+ sdist/
38
+ var/
39
+ wheels/
40
+ share/python-wheels/
41
+ *.egg-info/
42
+ .installed.cfg
43
+ *.egg
44
+ MANIFEST
45
+
46
+ # PyInstaller
47
+ # Usually these files are written by a python script from a template
48
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
49
+ *.manifest
50
+ *.spec
51
+
52
+ # Installer logs
53
+ pip-log.txt
54
+ pip-delete-this-directory.txt
55
+
56
+ # Unit test / coverage reports
57
+ htmlcov/
58
+ .tox/
59
+ .nox/
60
+ .coverage
61
+ .coverage.*
62
+ .cache
63
+ nosetests.xml
64
+ coverage.xml
65
+ *.cover
66
+ *.py,cover
67
+ .hypothesis/
68
+ .pytest_cache/
69
+ cover/
70
+
71
+ # Translations
72
+ *.mo
73
+ *.pot
74
+
75
+ # Django stuff:
76
+ *.log
77
+ local_settings.py
78
+ db.sqlite3
79
+ db.sqlite3-journal
80
+
81
+ # Flask stuff:
82
+ instance/
83
+ .webassets-cache
84
+
85
+ # Scrapy stuff:
86
+ .scrapy
87
+
88
+ # Sphinx documentation
89
+ docs/_build/
90
+
91
+ # PyBuilder
92
+ .pybuilder/
93
+ target/
94
+
95
+ # Jupyter Notebook
96
+ .ipynb_checkpoints
97
+
98
+ # IPython
99
+ profile_default/
100
+ ipython_config.py
101
+
102
+ # pyenv
103
+ # For a library or package, you might want to ignore these files since the code is
104
+ # intended to run in multiple environments; otherwise, check them in:
105
+ # .python-version
106
+
107
+ # pipenv
108
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
109
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
110
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
111
+ # install all needed dependencies.
112
+ #Pipfile.lock
113
+
114
+ # poetry
115
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
116
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
117
+ # commonly ignored for libraries.
118
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
119
+ #poetry.lock
120
+
121
+ # pdm
122
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
123
+ #pdm.lock
124
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
125
+ # in version control.
126
+ # https://pdm.fming.dev/#use-with-ide
127
+ .pdm.toml
128
+
129
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
130
+ __pypackages__/
131
+
132
+ # Celery stuff
133
+ celerybeat-schedule
134
+ celerybeat.pid
135
+
136
+ # SageMath parsed files
137
+ *.sage.py
138
+
139
+ # Environments
140
+ .env
141
+ .venv
142
+ env/
143
+ venv/
144
+ ENV/
145
+ env.bak/
146
+ venv.bak/
147
+
148
+ # Spyder project settings
149
+ .spyderproject
150
+ .spyproject
151
+
152
+ # Rope project settings
153
+ .ropeproject
154
+
155
+ # mkdocs documentation
156
+ /site
157
+
158
+ # mypy
159
+ .mypy_cache/
160
+ .dmypy.json
161
+ dmypy.json
162
+
163
+ # Pyre type checker
164
+ .pyre/
165
+
166
+ # pytype static type analyzer
167
+ .pytype/
168
+
169
+ # Cython debug symbols
170
+ cython_debug/
171
+
172
+ # PyCharm
173
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
174
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
175
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
176
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
177
+ .idea/
178
+
179
+ # Logs
180
+ logs
181
+ *.log
182
+ npm-debug.log*
183
+ yarn-debug.log*
184
+ yarn-error.log*
185
+ lerna-debug.log*
186
+ .pnpm-debug.log*
187
+
188
+ # Diagnostic reports (https://nodejs.org/api/report.html)
189
+ report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
190
+
191
+ # Runtime data
192
+ pids
193
+ *.pid
194
+ *.seed
195
+ *.pid.lock
196
+
197
+ # Directory for instrumented libs generated by jscoverage/JSCover
198
+ lib-cov
199
+
200
+ # Coverage directory used by tools like istanbul
201
+ coverage
202
+ *.lcov
203
+
204
+ # nyc test coverage
205
+ .nyc_output
206
+
207
+ # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
208
+ .grunt
209
+
210
+ # Bower dependency directory (https://bower.io/)
211
+ bower_components
212
+
213
+ # node-waf configuration
214
+ .lock-wscript
215
+
216
+ # Compiled binary addons (https://nodejs.org/api/addons.html)
217
+ build/Release
218
+
219
+ # Dependency directories
220
+ node_modules/
221
+ jspm_packages/
222
+
223
+ # Snowpack dependency directory (https://snowpack.dev/)
224
+ web_modules/
225
+
226
+ # TypeScript cache
227
+ *.tsbuildinfo
228
+
229
+ # Optional npm cache directory
230
+ .npm
231
+
232
+ # Optional eslint cache
233
+ .eslintcache
234
+
235
+ # Optional stylelint cache
236
+ .stylelintcache
237
+
238
+ # Microbundle cache
239
+ .rpt2_cache/
240
+ .rts2_cache_cjs/
241
+ .rts2_cache_es/
242
+ .rts2_cache_umd/
243
+
244
+ # Optional REPL history
245
+ .node_repl_history
246
+
247
+ # Output of 'npm pack'
248
+ *.tgz
249
+
250
+ # Yarn Integrity file
251
+ .yarn-integrity
252
+
253
+ # dotenv environment variable files
254
+ .env
255
+ .env.development.local
256
+ .env.test.local
257
+ .env.production.local
258
+ .env.local
259
+
260
+ # parcel-bundler cache (https://parceljs.org/)
261
+ .cache
262
+ .parcel-cache
263
+
264
+ # Next.js build output
265
+ .next
266
+ out
267
+
268
+ # Nuxt.js build / generate output
269
+ .nuxt
270
+ dist
271
+
272
+ # Gatsby files
273
+ .cache/
274
+ # Comment in the public line in if your project uses Gatsby and not Next.js
275
+ # https://nextjs.org/blog/next-9-1#public-directory-support
276
+ # public
277
+
278
+ # vuepress build output
279
+ .vuepress/dist
280
+
281
+ # vuepress v2.x temp and cache directory
282
+ .temp
283
+ .cache
284
+
285
+ # Docusaurus cache and generated files
286
+ .docusaurus
287
+
288
+ # Serverless directories
289
+ .serverless/
290
+
291
+ # FuseBox cache
292
+ .fusebox/
293
+
294
+ # DynamoDB Local files
295
+ .dynamodb/
296
+
297
+ # TernJS port file
298
+ .tern-port
299
+
300
+ # Stores VSCode versions used for testing VSCode extensions
301
+ .vscode-test
302
+
303
+ # yarn v2
304
+ .yarn/cache
305
+ .yarn/unplugged
306
+ .yarn/build-state.yml
307
+ .yarn/install-state.gz
308
+ .pnp.*
309
+
310
+ # cypress artifacts
311
+ cypress/videos
312
+ cypress/screenshots
313
+
314
+
315
+
316
+ /static/*
.prettierrc ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "useTabs": true,
3
+ "singleQuote": true,
4
+ "trailingComma": "none",
5
+ "printWidth": 100,
6
+ "plugins": ["prettier-plugin-svelte"],
7
+ "pluginSearchDirs": ["."],
8
+ "overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
9
+ }
CHANGELOG.md ADDED
@@ -0,0 +1,1159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [0.3.32] - 2024-10-06
9
+
10
+ ### Added
11
+
12
+ - **🔢 Workspace Enhancements**: Added a display count for models, prompts, tools, and functions in the workspace, providing a clear overview and easier management.
13
+
14
+ ### Fixed
15
+
16
+ - **🖥️ Web and YouTube Attachment Fix**: Resolved an issue where attaching web links and YouTube videos was malfunctioning, ensuring seamless integration and display within chats.
17
+ - **📞 Call Mode Activation on Landing Page**: Fixed a bug where call mode was not operational from the landing page.
18
+
19
+ ### Changed
20
+
21
+ - **🔄 URL Parameter Refinement**: Updated the 'tool_ids' URL parameter to 'tools' or 'tool-ids' for more intuitive and consistent user experience.
22
+ - **🎨 Floating Buttons Styling Update**: Refactored the styling of floating buttons to intelligently adjust to the left side when there isn't enough room on the right, improving interface usability and aesthetic.
23
+ - **🔧 Enhanced Accessibility for Floating Buttons**: Implemented the ability to close floating buttons with the 'Esc' key, making workflow smoother and more efficient for users navigating via keyboard.
24
+ - **🖇️ Updated Information URL**: Information URLs now direct users to a general release page rather than a version-specific URL, ensuring access to the latest and relevant details all in one place.
25
+ - **📦 Library Dependencies Update**: Upgraded dependencies to ensure compatibility and performance optimization for pip installs.
26
+
27
+ ## [0.3.31] - 2024-10-06
28
+
29
+ ### Added
30
+
31
+ - **📚 Knowledge Feature**: Reimagined documents feature, now more performant with a better UI for enhanced organization; includes streamlined API integration for Retrieval-Augmented Generation (RAG). Detailed documentation forthcoming: https://docs.openwebui.com/
32
+ - **🌐 New Landing Page**: Freshly designed landing page; toggle between the new UI and the classic chat UI from Settings > Interface for a personalized experience.
33
+ - **📁 Full Document Retrieval Mode**: Toggle between full document retrieval or traditional snippets by clicking on the file item. This mode enhances document capabilities and supports comprehensive tasks like summarization by utilizing the entire content instead of RAG.
34
+ - **📄 Extracted File Content Display**: View extracted content directly by clicking on the file item, simplifying file analysis.
35
+ - **🎨 Artifacts Feature**: Render web content and SVGs directly in the interface, supporting quick iterations and live changes.
36
+ - **🖊️ Editable Code Blocks**: Supercharged code blocks now allow live editing directly in the LLM response, with live reloads supported by artifacts.
37
+ - **🔧 Code Block Enhancements**: Introduced a floating copy button in code blocks to facilitate easier code copying without scrolling.
38
+ - **🔍 SVG Pan/Zoom**: Enhanced interaction with SVG images, including Mermaid diagrams, via new pan and zoom capabilities.
39
+ - **🔍 Text Select Quick Actions**: New floating buttons appear when text is highlighted in LLM responses, offering deeper interactions like "Ask a Question" or "Explain".
40
+ - **🗃️ Database Pool Configuration**: Enhanced database handling to support scalable user growth.
41
+ - **🔊 Experimental Audio Compression**: Compress audio files to navigate around the 25MB limit for OpenAI's speech-to-text processing.
42
+ - **🔍 Query Embedding**: Adjusted embedding behavior to enhance system performance by not repeating query embedding.
43
+ - **💾 Lazy Load Optimizations**: Implemented lazy loading of large dependencies to minimize initial memory usage, boosting performance.
44
+ - **🍏 Apple Touch Icon Support**: Optimizes the display of icons for web bookmarks on Apple mobile devices.
45
+ - **🔽 Expandable Content Markdown Support**: Introducing 'details', 'summary' tag support for creating expandable content sections in markdown, facilitating cleaner, organized documentation and interactive content display.
46
+
47
+ ### Fixed
48
+
49
+ - **🔘 Action Button Issue**: Resolved a bug where action buttons were not functioning, enhancing UI reliability.
50
+ - **🔄 Multi-Model Chat Loop**: Fixed an infinite loop issue in multi-model chat environments, ensuring smoother chat operations.
51
+ - **📄 Chat PDF/TXT Export Issue**: Resolved problems with exporting chat logs to PDF and TXT formats.
52
+ - **🔊 Call to Text-to-Speech Issues**: Rectified problems with text-to-speech functions to improve audio interactions.
53
+
54
+ ### Changed
55
+
56
+ - **⚙️ Endpoint Renaming**: Renamed 'rag' endpoints to 'retrieval' for clearer function description.
57
+ - **🎨 Styling and Interface Updates**: Multiple refinements across the platform to enhance visual appeal and user interaction.
58
+
59
+ ### Removed
60
+
61
+ - **🗑️ Deprecated 'DOCS_DIR'**: Removed the outdated 'docs_dir' variable in favor of more direct file management solutions, with direct file directory syncing and API uploads for a more integrated experience.
62
+
63
+ ## [0.3.30] - 2024-09-26
64
+
65
+ ### Fixed
66
+
67
+ - **🍞 Update Available Toast Dismissal**: Enhanced user experience by ensuring that once the update available notification is dismissed, it won't reappear for 24 hours.
68
+ - **📋 Ollama /embed Form Data**: Adjusted the integration inaccuracies in the /embed form data to ensure it perfectly matches with Ollama's specifications.
69
+ - **🔧 O1 Max Completion Tokens Issue**: Resolved compatibility issues with OpenAI's o1 models max_completion_tokens param to ensure smooth operation.
70
+ - **🔄 Pip Install Database Issue**: Fixed a critical issue where database changes during pip installations were reverting and not saving chat logs, now ensuring data persistence and reliability in chat operations.
71
+ - **🏷️ Chat Rename Tab Update**: Fixed the functionality to change the web browser's tab title simultaneously when a chat is renamed, keeping tab titles consistent.
72
+
73
+ ## [0.3.29] - 2023-09-25
74
+
75
+ ### Fixed
76
+
77
+ - **🔧 KaTeX Rendering Improvement**: Resolved specific corner cases in KaTeX rendering to enhance the display of complex mathematical notation.
78
+ - **📞 'Call' URL Parameter Fix**: Corrected functionality for 'call' URL search parameter ensuring reliable activation of voice calls through URL triggers.
79
+ - **🔄 Configuration Reset Fix**: Fixed the RESET_CONFIG_ON_START to ensure settings revert to default correctly upon each startup, improving reliability in configuration management.
80
+ - **🌍 Filter Outlet Hook Fix**: Addressed issues in the filter outlet hook, ensuring all filter functions operate as intended.
81
+
82
+ ## [0.3.28] - 2024-09-24
83
+
84
+ ### Fixed
85
+
86
+ - **🔍 Web Search Functionality**: Corrected an issue where the web search option was not functioning properly.
87
+
88
+ ## [0.3.27] - 2024-09-24
89
+
90
+ ### Fixed
91
+
92
+ - **🔄 Periodic Cleanup Error Resolved**: Fixed a critical RuntimeError related to the 'periodic_usage_pool_cleanup' coroutine, ensuring smooth and efficient performance post-pip install, correcting a persisting issue from version 0.3.26.
93
+ - **📊 Enhanced LaTeX Rendering**: Improved rendering for LaTeX content, enhancing clarity and visual presentation in documents and mathematical models.
94
+
95
+ ## [0.3.26] - 2024-09-24
96
+
97
+ ### Fixed
98
+
99
+ - **🔄 Event Loop Error Resolution**: Addressed a critical error where a missing running event loop caused 'periodic_usage_pool_cleanup' to fail with pip installs. This fix ensures smoother and more reliable updates and installations, enhancing overall system stability.
100
+
101
+ ## [0.3.25] - 2024-09-24
102
+
103
+ ### Fixed
104
+
105
+ - **🖼️ Image Generation Functionality**: Resolved an issue where image generation was not functioning, restoring full capability for visual content creation.
106
+ - **⚖️ Rate Response Corrections**: Addressed a problem where rate responses were not working, ensuring reliable feedback mechanisms are operational.
107
+
108
+ ## [0.3.24] - 2024-09-24
109
+
110
+ ### Added
111
+
112
+ - **🚀 Rendering Optimization**: Significantly improved message rendering performance, enhancing user experience and webui responsiveness.
113
+ - **💖 Favorite Response Feature in Chat Overview**: Users can now mark responses as favorite directly from the chat overview, enhancing ease of retrieval and organization of preferred responses.
114
+ - **💬 Create Message Pairs with Shortcut**: Implemented creation of new message pairs using Cmd/Ctrl+Shift+Enter, making conversation editing faster and more intuitive.
115
+ - **🌍 Expanded User Prompt Variables**: Added weekday, timezone, and language information variables to user prompts to match system prompt variables.
116
+ - **🎵 Enhanced Audio Support**: Now includes support for 'audio/x-m4a' files, broadening compatibility with audio content within the platform.
117
+ - **🔏 Model URL Search Parameter**: Added an ability to select a model directly via URL parameters, streamlining navigation and model access.
118
+ - **📄 Enhanced PDF Citations**: PDF citations now open at the associated page, streamlining reference checks and document handling.
119
+ - **🔧Use of Redis in Sockets**: Enhanced socket implementation to fully support Redis, enabling effective stateless instances suitable for scalable load balancing.
120
+ - **🌍 Stream Individual Model Responses**: Allows specific models to have individualized streaming settings, enhancing performance and customization.
121
+ - **🕒 Display Model Hash and Last Modified Timestamp for Ollama Models**: Provides critical model details directly in the Models workspace for enhanced tracking.
122
+ - **❗ Update Info Notification for Admins**: Ensures administrators receive immediate updates upon login, keeping them informed of the latest changes and system statuses.
123
+
124
+ ### Fixed
125
+
126
+ - **🗑️ Temporary File Handling On Windows**: Fixed an issue causing errors when accessing a temporary file being used by another process, Tools & Functions should now work as intended.
127
+ - **🔓 Authentication Toggle Issue**: Resolved the malfunction where setting 'WEBUI_AUTH=False' did not appropriately disable authentication, ensuring that user experience and system security settings function as configured.
128
+ - **🔧 Save As Copy Issue for Many Model Chats**: Resolved an error preventing users from save messages as copies in many model chats.
129
+ - **🔒 Sidebar Closure on Mobile**: Resolved an issue where the mobile sidebar remained open after menu engagement, improving user interface responsivity and comfort.
130
+ - **🛡️ Tooltip XSS Vulnerability**: Resolved a cross-site scripting (XSS) issue within tooltips, ensuring enhanced security and data integrity during user interactions.
131
+
132
+ ### Changed
133
+
134
+ - **↩️ Deprecated Interface Stream Response Settings**: Moved to advanced parameters to streamline interface settings and enhance user clarity.
135
+ - **⚙️ Renamed 'speedRate' to 'playbackRate'**: Standardizes terminology, improving usability and understanding in media settings.
136
+
137
+ ## [0.3.23] - 2024-09-21
138
+
139
+ ### Added
140
+
141
+ - **🚀 WebSocket Redis Support**: Enhanced load balancing capabilities for multiple instance setups, promoting better performance and reliability in WebUI.
142
+ - **🔧 Adjustable Chat Controls**: Introduced width-adjustable chat controls, enabling a personalized and more comfortable user interface.
143
+ - **🌎 i18n Updates**: Improved and updated the Chinese translations.
144
+
145
+ ### Fixed
146
+
147
+ - **🌐 Task Model Unloading Issue**: Modified task handling to use the Ollama /api/chat endpoint instead of OpenAI compatible endpoint, ensuring models stay loaded and ready with custom parameters, thus minimizing delays in task execution.
148
+ - **📝 Title Generation Fix for OpenAI Compatible APIs**: Resolved an issue preventing the generation of titles, enhancing consistency and reliability when using multiple API providers.
149
+ - **🗃️ RAG Duplicate Collection Issue**: Fixed a bug causing repeated processing of the same uploaded file. Now utilizes indexed files to prevent unnecessary duplications, optimizing resource usage.
150
+ - **🖼️ Image Generation Enhancement**: Refactored OpenAI image generation endpoint to be asynchronous, preventing the WebUI from becoming unresponsive during processing, thus enhancing user experience.
151
+ - **🔓 Downgrade Authlib**: Reverted Authlib to version 1.3.1 to address and resolve issues concerning OAuth functionality.
152
+
153
+ ### Changed
154
+
155
+ - **🔍 Improved Message Interaction**: Enhanced the message node interface to allow for easier focus redirection with a simple click, streamlining user interaction.
156
+ - **✨ Styling Refactor**: Updated WebUI styling for a cleaner, more modern look, enhancing user experience across the platform.
157
+
158
+ ## [0.3.22] - 2024-09-19
159
+
160
+ ### Added
161
+
162
+ - **⭐ Chat Overview**: Introducing a node-based interactive messages diagram for improved visualization of conversation flows.
163
+ - **🔗 Multiple Vector DB Support**: Now supports multiple vector databases, including the newly added Milvus support. Community contributions for additional database support are highly encouraged!
164
+ - **📡 Experimental Non-Stream Chat Completion**: Experimental feature allowing the use of OpenAI o1 models, which do not support streaming, ensuring more versatile model deployment.
165
+ - **🔍 Experimental Colbert-AI Reranker Integration**: Added support for "jinaai/jina-colbert-v2" as a reranker, enhancing search relevance and accuracy. Note: it may not function at all on low-spec computers.
166
+ - **🕸️ ENABLE_WEBSOCKET_SUPPORT**: Added environment variable for instances to ignore websocket upgrades, stabilizing connections on platforms with websocket issues.
167
+ - **🔊 Azure Speech Service Integration**: Added support for Azure Speech services for Text-to-Speech (TTS).
168
+ - **🎚️ Customizable Playback Speed**: Playback speed control is now available in Call mode settings, allowing users to adjust audio playback speed to their preferences.
169
+ - **🧠 Enhanced Error Messaging**: System now displays helpful error messages directly to users during chat completion issues.
170
+ - **📂 Save Model as Transparent PNG**: Model profile images are now saved as PNGs, supporting transparency and improving visual integration.
171
+ - **📱 iPhone Compatibility Adjustments**: Added padding to accommodate the iPhone navigation bar, improving UI display on these devices.
172
+ - **🔗 Secure Response Headers**: Implemented security response headers, bolstering web application security.
173
+ - **🔧 Enhanced AUTOMATIC1111 Settings**: Users can now configure 'CFG Scale', 'Sampler', and 'Scheduler' parameters directly in the admin settings, enhancing workflow flexibility without source code modifications.
174
+ - **🌍 i18n Updates**: Enhanced translations for Chinese, Ukrainian, Russian, and French, fostering a better localized experience.
175
+
176
+ ### Fixed
177
+
178
+ - **🛠️ Chat Message Deletion**: Resolved issues with chat message deletion, ensuring a smoother user interaction and system stability.
179
+ - **🔢 Ordered List Numbering**: Fixed the incorrect ordering in lists.
180
+
181
+ ### Changed
182
+
183
+ - **🎨 Transparent Icon Handling**: Allowed model icons to be displayed on transparent backgrounds, improving UI aesthetics.
184
+ - **📝 Improved RAG Template**: Enhanced Retrieval-Augmented Generation template, optimizing context handling and error checking for more precise operation.
185
+
186
+ ## [0.3.21] - 2024-09-08
187
+
188
+ ### Added
189
+
190
+ - **📊 Document Count Display**: Now displays the total number of documents directly within the dashboard.
191
+ - **🚀 Ollama Embed API Endpoint**: Enabled /api/embed endpoint proxy support.
192
+
193
+ ### Fixed
194
+
195
+ - **🐳 Docker Launch Issue**: Resolved the problem preventing Open-WebUI from launching correctly when using Docker.
196
+
197
+ ### Changed
198
+
199
+ - **🔍 Enhanced Search Prompts**: Improved the search query generation prompts for better accuracy and user interaction, enhancing the overall search experience.
200
+
201
+ ## [0.3.20] - 2024-09-07
202
+
203
+ ### Added
204
+
205
+ - **🌐 Translation Update**: Updated Catalan translations to improve user experience for Catalan speakers.
206
+
207
+ ### Fixed
208
+
209
+ - **📄 PDF Download**: Resolved a configuration issue with fonts directory, ensuring PDFs are now downloaded with the correct formatting.
210
+ - **🛠️ Installation of Tools & Functions Requirements**: Fixed a bug where necessary requirements for tools and functions were not properly installing.
211
+ - **🔗 Inline Image Link Rendering**: Enabled rendering of images directly from links in chat.
212
+ - **📞 Post-Call User Interface Cleanup**: Adjusted UI behavior to automatically close chat controls after a voice call ends, reducing screen clutter.
213
+ - **🎙️ Microphone Deactivation Post-Call**: Addressed an issue where the microphone remained active after calls.
214
+ - **✍️ Markdown Spacing Correction**: Corrected spacing in Markdown rendering, ensuring text appears neatly and as expected.
215
+ - **🔄 Message Re-rendering**: Fixed an issue causing all response messages to re-render with each new message, now improving chat performance.
216
+
217
+ ### Changed
218
+
219
+ - **🌐 Refined Web Search Integration**: Deprecated the Search Query Generation Prompt threshold; introduced a toggle button for "Enable Web Search Query Generation" allowing users to opt-in to using web search more judiciously.
220
+ - **📝 Default Prompt Templates Update**: Emptied environment variable templates for search and title generation now default to the Open WebUI default prompt templates, simplifying configuration efforts.
221
+
222
+ ## [0.3.19] - 2024-09-05
223
+
224
+ ### Added
225
+
226
+ - **🌐 Translation Update**: Improved Chinese translations.
227
+
228
+ ### Fixed
229
+
230
+ - **📂 DATA_DIR Overriding**: Fixed an issue to avoid overriding DATA_DIR, preventing errors when directories are set identically, ensuring smoother operation and data management.
231
+ - **🛠️ Frontmatter Extraction**: Fixed the extraction process for frontmatter in tools and functions.
232
+
233
+ ### Changed
234
+
235
+ - **🎨 UI Styling**: Refined the user interface styling for enhanced visual coherence and user experience.
236
+
237
+ ## [0.3.18] - 2024-09-04
238
+
239
+ ### Added
240
+
241
+ - **🛠️ Direct Database Execution for Tools & Functions**: Enhanced the execution of Python files for tools and functions, now directly loading from the database for a more streamlined backend process.
242
+
243
+ ### Fixed
244
+
245
+ - **🔄 Automatic Rewrite of Import Statements in Tools & Functions**: Tool and function scripts that import 'utils', 'apps', 'main', 'config' will now automatically rename these with 'open_webui.', ensuring compatibility and consistency across different modules.
246
+ - **🎨 Styling Adjustments**: Minor fixes in the visual styling to improve user experience and interface consistency.
247
+
248
+ ## [0.3.17] - 2024-09-04
249
+
250
+ ### Added
251
+
252
+ - **🔄 Import/Export Configuration**: Users can now import and export webui configurations from admin settings > Database, simplifying setup replication across systems.
253
+ - **🌍 Web Search via URL Parameter**: Added support for activating web search directly through URL by setting 'web-search=true'.
254
+ - **🌐 SearchApi Integration**: Added support for SearchApi as an alternative web search provider, enhancing search capabilities within the platform.
255
+ - **🔍 Literal Type Support in Tools**: Tools now support the Literal type.
256
+ - **🌍 Updated Translations**: Improved translations for Chinese, Ukrainian, and Catalan.
257
+
258
+ ### Fixed
259
+
260
+ - **🔧 Pip Install Issue**: Resolved the issue where pip install failed due to missing 'alembic.ini', ensuring smoother installation processes.
261
+ - **🌃 Automatic Theme Update**: Fixed an issue where the color theme did not update dynamically with system changes.
262
+ - **🛠️ User Agent in ComfyUI**: Added default headers in ComfyUI to fix access issues, improving reliability in network communications.
263
+ - **🔄 Missing Chat Completion Response Headers**: Ensured proper return of proxied response headers during chat completion, improving API reliability.
264
+ - **🔗 Websocket Connection Prioritization**: Modified socket.io configuration to prefer websockets and more reliably fallback to polling, enhancing connection stability.
265
+ - **🎭 Accessibility Enhancements**: Added missing ARIA labels for buttons, improving accessibility for visually impaired users.
266
+ - **⚖️ Advanced Parameter**: Fixed an issue ensuring that advanced parameters are correctly applied in all scenarios, ensuring consistent behavior of user-defined settings.
267
+
268
+ ### Changed
269
+
270
+ - **🔁 Namespace Reorganization**: Reorganized all Python files under the 'open_webui' namespace to streamline the project structure and improve maintainability. Tools and functions importing from 'utils' should now use 'open_webui.utils'.
271
+ - **🚧 Dependency Updates**: Updated several backend dependencies like 'aiohttp', 'authlib', 'duckduckgo-search', 'flask-cors', and 'langchain' to their latest versions, enhancing performance and security.
272
+
273
+ ## [0.3.16] - 2024-08-27
274
+
275
+ ### Added
276
+
277
+ - **🚀 Config DB Migration**: Migrated configuration handling from config.json to the database, enabling high-availability setups and load balancing across multiple Open WebUI instances.
278
+ - **🔗 Call Mode Activation via URL**: Added a 'call=true' URL search parameter enabling direct shortcuts to activate call mode, enhancing user interaction on mobile devices.
279
+ - **✨ TTS Content Control**: Added functionality to control how message content is segmented for Text-to-Speech (TTS) generation requests, allowing for more flexible speech output options.
280
+ - **😄 Show Knowledge Search Status**: Enhanced model usage transparency by displaying status when working with knowledge-augmented models, helping users understand the system's state during queries.
281
+ - **👆 Click-to-Copy for Codespan**: Enhanced interactive experience in the WebUI by allowing users to click to copy content from code spans directly.
282
+ - **🚫 API User Blocking via Model Filter**: Introduced the ability to block API users based on customized model filters, enhancing security and control over API access.
283
+ - **🎬 Call Overlay Styling**: Adjusted call overlay styling on large screens to not cover the entire interface, but only the chat control area, for a more unobtrusive interaction experience.
284
+
285
+ ### Fixed
286
+
287
+ - **🔧 LaTeX Rendering Issue**: Addressed an issue that affected the correct rendering of LaTeX.
288
+ - **📁 File Leak Prevention**: Resolved the issue of uploaded files mistakenly being accessible across user chats.
289
+ - **🔧 Pipe Functions with '**files**' Param**: Fixed issues with '**files**' parameter not functioning correctly in pipe functions.
290
+ - **📝 Markdown Processing for RAG**: Fixed issues with processing Markdown in files.
291
+ - **🚫 Duplicate System Prompts**: Fixed bugs causing system prompts to duplicate.
292
+
293
+ ### Changed
294
+
295
+ - **🔋 Wakelock Permission**: Optimized the activation of wakelock to only engage during call mode, conserving device resources and improving battery performance during idle periods.
296
+ - **🔍 Content-Type for Ollama Chats**: Added 'application/x-ndjson' content-type to '/api/chat' endpoint responses to match raw Ollama responses.
297
+ - **✋ Disable Signups Conditionally**: Implemented conditional logic to disable sign-ups when 'ENABLE_LOGIN_FORM' is set to false.
298
+
299
+ ## [0.3.15] - 2024-08-21
300
+
301
+ ### Added
302
+
303
+ - **🔗 Temporary Chat Activation**: Integrated a new URL parameter 'temporary-chat=true' to enable temporary chat sessions directly through the URL.
304
+ - **🌄 ComfyUI Seed Node Support**: Introduced seed node support in ComfyUI for image generation, allowing users to specify node IDs for randomized seed assignment.
305
+
306
+ ### Fixed
307
+
308
+ - **🛠️ Tools and Functions**: Resolved a critical issue where Tools and Functions were not properly functioning, restoring full capability and reliability to these essential features.
309
+ - **🔘 Chat Action Button in Many Model Chat**: Fixed the malfunctioning of chat action buttons in many model chat environments, ensuring a smoother and more responsive user interaction.
310
+ - **⏪ Many Model Chat Compatibility**: Restored backward compatibility for many model chats.
311
+
312
+ ## [0.3.14] - 2024-08-21
313
+
314
+ ### Added
315
+
316
+ - **🛠️ Custom ComfyUI Workflow**: Deprecating several older environment variables, this enhancement introduces a new, customizable workflow for a more tailored user experience.
317
+ - **🔀 Merge Responses in Many Model Chat**: Enhances the dialogue by merging responses from multiple models into a single, coherent reply, improving the interaction quality in many model chats.
318
+ - **✅ Multiple Instances of Same Model in Chats**: Enhanced many model chat to support adding multiple instances of the same model.
319
+ - **🔧 Quick Actions in Model Workspace**: Enhanced Shift key quick actions for hiding/unhiding and deleting models, facilitating a smoother workflow.
320
+ - **🗨️ Markdown Rendering in User Messages**: User messages are now rendered in Markdown, enhancing readability and interaction.
321
+ - **💬 Temporary Chat Feature**: Introduced a temporary chat feature, deprecating the old chat history setting to enhance user interaction flexibility.
322
+ - **🖋️ User Message Editing**: Enhanced the user chat editing feature to allow saving changes without sending, providing more flexibility in message management.
323
+ - **🛡️ Security Enhancements**: Various security improvements implemented across the platform to ensure safer user experiences.
324
+ - **🌍 Updated Translations**: Enhanced translations for Chinese, Ukrainian, and Bahasa Malaysia, improving localization and user comprehension.
325
+
326
+ ### Fixed
327
+
328
+ - **📑 Mermaid Rendering Issue**: Addressed issues with Mermaid chart rendering to ensure clean and clear visual data representation.
329
+ - **🎭 PWA Icon Maskability**: Fixed the Progressive Web App icon to be maskable, ensuring proper display on various device home screens.
330
+ - **🔀 Cloned Model Chat Freezing Issue**: Fixed a bug where cloning many model chats would cause freezing, enhancing stability and responsiveness.
331
+ - **🔍 Generic Error Handling and Refinements**: Various minor fixes and refinements to address previously untracked issues, ensuring smoother operations.
332
+
333
+ ### Changed
334
+
335
+ - **🖼️ Image Generation Refactor**: Overhauled image generation processes for improved efficiency and quality.
336
+ - **🔨 Refactor Tool and Function Calling**: Refactored tool and function calling mechanisms for improved clarity and maintainability.
337
+ - **🌐 Backend Library Updates**: Updated critical backend libraries including SQLAlchemy, uvicorn[standard], faster-whisper, bcrypt, and boto3 for enhanced performance and security.
338
+
339
+ ### Removed
340
+
341
+ - **🚫 Deprecated ComfyUI Environment Variables**: Removed several outdated environment variables related to ComfyUI settings, simplifying configuration management.
342
+
343
+ ## [0.3.13] - 2024-08-14
344
+
345
+ ### Added
346
+
347
+ - **🎨 Enhanced Markdown Rendering**: Significant improvements in rendering markdown, ensuring smooth and reliable display of LaTeX and Mermaid charts, enhancing user experience with more robust visual content.
348
+ - **🔄 Auto-Install Tools & Functions Python Dependencies**: For 'Tools' and 'Functions', Open WebUI now automatically install extra python requirements specified in the frontmatter, streamlining setup processes and customization.
349
+ - **🌀 OAuth Email Claim Customization**: Introduced an 'OAUTH_EMAIL_CLAIM' variable to allow customization of the default "email" claim within OAuth configurations, providing greater flexibility in authentication processes.
350
+ - **📶 Websocket Reconnection**: Enhanced reliability with the capability to automatically reconnect when a websocket is closed, ensuring consistent and stable communication.
351
+ - **🤳 Haptic Feedback on Support Devices**: Android devices now support haptic feedback for an immersive tactile experience during certain interactions.
352
+
353
+ ### Fixed
354
+
355
+ - **🛠️ ComfyUI Performance Improvement**: Addressed an issue causing FastAPI to stall when ComfyUI image generation was active; now runs in a separate thread to prevent UI unresponsiveness.
356
+ - **🔀 Session Handling**: Fixed an issue mandating session_id on client-side to ensure smoother session management and transitions.
357
+ - **🖋️ Minor Bug Fixes and Format Corrections**: Various minor fixes including typo corrections, backend formatting improvements, and test amendments enhancing overall system stability and performance.
358
+
359
+ ### Changed
360
+
361
+ - **🚀 Migration to SvelteKit 2**: Upgraded the underlying framework to SvelteKit version 2, offering enhanced speed, better code structure, and improved deployment capabilities.
362
+ - **🧹 General Cleanup and Refactoring**: Performed broad cleanup and refactoring across the platform, improving code efficiency and maintaining high standards of code health.
363
+ - **🚧 Integration Testing Improvements**: Modified how Cypress integration tests detect chat messages and updated sharing tests for better reliability and accuracy.
364
+ - **📁 Standardized '.safetensors' File Extension**: Renamed the '.sft' file extension to '.safetensors' for ComfyUI workflows, standardizing file formats across the platform.
365
+
366
+ ### Removed
367
+
368
+ - **🗑️ Deprecated Frontend Functions**: Removed frontend functions that were migrated to backend to declutter the codebase and reduce redundancy.
369
+
370
+ ## [0.3.12] - 2024-08-07
371
+
372
+ ### Added
373
+
374
+ - **🔄 Sidebar Infinite Scroll**: Added an infinite scroll feature in the sidebar for more efficient chat navigation, reducing load times and enhancing user experience.
375
+ - **🚀 Enhanced Markdown Rendering**: Support for rendering all code blocks and making images clickable for preview; codespan styling is also enhanced to improve readability and user interaction.
376
+ - **🔒 Admin Shared Chat Visibility**: Admins no longer have default visibility over shared chats when ENABLE_ADMIN_CHAT_ACCESS is set to false, tightening security and privacy settings for users.
377
+ - **🌍 Language Updates**: Added Malay (Bahasa Malaysia) translation and updated Catalan and Traditional Chinese translations to improve accessibility for more users.
378
+
379
+ ### Fixed
380
+
381
+ - **📊 Markdown Rendering Issues**: Resolved issues with markdown rendering to ensure consistent and correct display across components.
382
+ - **🛠️ Styling Issues**: Multiple fixes applied to styling throughout the application, improving the overall visual experience and interface consistency.
383
+ - **🗃️ Modal Handling**: Fixed an issue where modals were not closing correctly in various model chat scenarios, enhancing usability and interface reliability.
384
+ - **📄 Missing OpenAI Usage Information**: Resolved issues where usage statistics for OpenAI services were not being correctly displayed, ensuring users have access to crucial data for managing and monitoring their API consumption.
385
+ - **🔧 Non-Streaming Support for Functions Plugin**: Fixed a functionality issue with the Functions plugin where non-streaming operations were not functioning as intended, restoring full capabilities for async and sync integration within the platform.
386
+ - **🔄 Environment Variable Type Correction (COMFYUI_FLUX_FP8_CLIP)**: Corrected the data type of the 'COMFYUI_FLUX_FP8_CLIP' environment variable from string to boolean, ensuring environment settings apply correctly and enhance configuration management.
387
+
388
+ ### Changed
389
+
390
+ - **🔧 Backend Dependency Updates**: Updated several backend dependencies such as boto3, pypdf, python-pptx, validators, and black, ensuring up-to-date security and performance optimizations.
391
+
392
+ ## [0.3.11] - 2024-08-02
393
+
394
+ ### Added
395
+
396
+ - **📊 Model Information Display**: Added visuals for model selection, including images next to model names for more intuitive navigation.
397
+ - **🗣 ElevenLabs Voice Adaptations**: Voice enhancements including support for ElevenLabs voice ID by name for personalized vocal interactions.
398
+ - **⌨️ Arrow Keys Model Selection**: Users can now use arrow keys for quicker model selection, enhancing accessibility.
399
+ - **🔍 Fuzzy Search in Model Selector**: Enhanced model selector with fuzzy search to locate models swiftly, including descriptions.
400
+ - **🕹️ ComfyUI Flux Image Generation**: Added support for the new Flux image gen model; introduces environment controls like weight precision and CLIP model options in Settings.
401
+ - **💾 Display File Size for Uploads**: Enhanced file interface now displays file size, preparing for upcoming upload restrictions.
402
+ - **🎚️ Advanced Params "Min P"**: Added 'Min P' parameter in the advanced settings for customized model precision control.
403
+ - **🔒 Enhanced OAuth**: Introduced custom redirect URI support for OAuth behind reverse proxies, enabling safer authentication processes.
404
+ - **🖥 Enhanced Latex Rendering**: Adjustments made to latex rendering processes, now accurately detecting and presenting latex inputs from text.
405
+ - **🌐 Internationalization**: Enhanced with new Romanian and updated Vietnamese and Ukrainian translations, helping broaden accessibility for international users.
406
+
407
+ ### Fixed
408
+
409
+ - **🔧 Tags Handling in Document Upload**: Tags are now properly sent to the upload document handler, resolving issues with missing metadata.
410
+ - **🖥️ Sensitive Input Fields**: Corrected browser misinterpretation of secure input fields, preventing misclassification as password fields.
411
+ - **📂 Static Path Resolution in PDF Generation**: Fixed static paths that adjust dynamically to prevent issues across various environments.
412
+
413
+ ### Changed
414
+
415
+ - **🎨 UI/UX Styling Enhancements**: Multiple minor styling updates for a cleaner and more intuitive user interface.
416
+ - **🚧 Refactoring Various Components**: Numerous refactoring changes across styling, file handling, and function simplifications for clarity and performance.
417
+ - **🎛️ User Valves Management**: Moved user valves from settings to direct chat controls for more user-friendly access during interactions.
418
+
419
+ ### Removed
420
+
421
+ - **⚙️ Health Check Logging**: Removed verbose logging from the health checking processes to declutter logs and improve backend performance.
422
+
423
+ ## [0.3.10] - 2024-07-17
424
+
425
+ ### Fixed
426
+
427
+ - **🔄 Improved File Upload**: Addressed the issue where file uploads lacked animation.
428
+ - **💬 Chat Continuity**: Fixed a problem where existing chats were not functioning properly in some instances.
429
+ - **🗂️ Chat File Reset**: Resolved the issue of chat files not resetting for new conversations, now ensuring a clean slate for each chat session.
430
+ - **📁 Document Workspace Uploads**: Corrected the handling of document uploads in the workspace using the Files API.
431
+
432
+ ## [0.3.9] - 2024-07-17
433
+
434
+ ### Added
435
+
436
+ - **📁 Files Chat Controls**: We've reverted to the old file handling behavior where uploaded files are always included. You can now manage files directly within the chat controls section, giving you the ability to remove files as needed.
437
+ - **🔧 "Action" Function Support**: Introducing a new "Action" function to write custom buttons to the message toolbar. This feature enables more interactive messaging, with documentation coming soon.
438
+ - **📜 Citations Handling**: For newly uploaded files in documents workspace, citations will now display the actual filename. Additionally, you can click on these filenames to open the file in a new tab for easier access.
439
+ - **🛠️ Event Emitter and Call Updates**: Enhanced 'event_emitter' to allow message replacement and 'event_call' to support text input for Tools and Functions. Detailed documentation will be provided shortly.
440
+ - **🎨 Styling Refactor**: Various styling updates for a cleaner and more cohesive user interface.
441
+ - **🌐 Enhanced Translations**: Improved translations for Catalan, Ukrainian, and Brazilian Portuguese.
442
+
443
+ ### Fixed
444
+
445
+ - **🔧 Chat Controls Priority**: Resolved an issue where Chat Controls values were being overridden by model information parameters. The priority is now Chat Controls, followed by Global Settings, then Model Settings.
446
+ - **🪲 Debug Logs**: Fixed an issue where debug logs were not being logged properly.
447
+ - **🔑 Automatic1111 Auth Key**: The auth key for Automatic1111 is no longer required.
448
+ - **📝 Title Generation**: Ensured that the title generation runs only once, even when multiple models are in a chat.
449
+ - **✅ Boolean Values in Params**: Added support for boolean values in parameters.
450
+ - **🖼️ Files Overlay Styling**: Fixed the styling issue with the files overlay.
451
+
452
+ ### Changed
453
+
454
+ - **⬆️ Dependency Updates**
455
+ - Upgraded 'pydantic' from version 2.7.1 to 2.8.2.
456
+ - Upgraded 'sqlalchemy' from version 2.0.30 to 2.0.31.
457
+ - Upgraded 'unstructured' from version 0.14.9 to 0.14.10.
458
+ - Upgraded 'chromadb' from version 0.5.3 to 0.5.4.
459
+
460
+ ## [0.3.8] - 2024-07-09
461
+
462
+ ### Added
463
+
464
+ - **💬 Chat Controls**: Easily adjust parameters for each chat session, offering more precise control over your interactions.
465
+ - **📌 Pinned Chats**: Support for pinned chats, allowing you to keep important conversations easily accessible.
466
+ - **📄 Apache Tika Integration**: Added support for using Apache Tika as a document loader, enhancing document processing capabilities.
467
+ - **🛠️ Custom Environment for OpenID Claims**: Allows setting custom claims for OpenID, providing more flexibility in user authentication.
468
+ - **🔧 Enhanced Tools & Functions API**: Introduced 'event_emitter' and 'event_call', now you can also add citations for better documentation and tracking. Detailed documentation will be provided on our documentation website.
469
+ - **↔️ Sideways Scrolling in Settings**: Settings tabs container now supports horizontal scrolling for easier navigation.
470
+ - **🌑 Darker OLED Theme**: Includes a new, darker OLED theme and improved styling for the light theme, enhancing visual appeal.
471
+ - **🌐 Language Updates**: Updated translations for Indonesian, German, French, and Catalan languages, expanding accessibility.
472
+
473
+ ### Fixed
474
+
475
+ - **⏰ OpenAI Streaming Timeout**: Resolved issues with OpenAI streaming response using the 'AIOHTTP_CLIENT_TIMEOUT' setting, ensuring reliable performance.
476
+ - **💡 User Valves**: Fixed malfunctioning user valves, ensuring proper functionality.
477
+ - **🔄 Collapsible Components**: Addressed issues with collapsible components not working, restoring expected behavior.
478
+
479
+ ### Changed
480
+
481
+ - **🗃️ Database Backend**: Switched from Peewee to SQLAlchemy for improved concurrency support, enhancing database performance.
482
+ - **⬆️ ChromaDB Update**: Upgraded to version 0.5.3. Ensure your remote ChromaDB instance matches this version.
483
+ - **🔤 Primary Font Styling**: Updated primary font to Archivo for better visual consistency.
484
+ - **🔄 Font Change for Windows**: Replaced Arimo with Inter font for Windows users, improving readability.
485
+ - **🚀 Lazy Loading**: Implemented lazy loading for 'faster_whisper' and 'sentence_transformers' to reduce startup memory usage.
486
+ - **📋 Task Generation Payload**: Task generations now include only the "task" field in the body instead of "title".
487
+
488
+ ## [0.3.7] - 2024-06-29
489
+
490
+ ### Added
491
+
492
+ - **🌐 Enhanced Internationalization (i18n)**: Newly introduced Indonesian translation, and updated translations for Turkish, Chinese, and Catalan languages to improve user accessibility.
493
+
494
+ ### Fixed
495
+
496
+ - **🕵️‍♂️ Browser Language Detection**: Corrected the issue where the application was not properly detecting and adapting to the browser's language settings.
497
+ - **🔐 OIDC Admin Role Assignment**: Fixed a bug where the admin role was not being assigned to the first user who signed up via OpenID Connect (OIDC).
498
+ - **💬 Chat/Completions Endpoint**: Resolved an issue where the chat/completions endpoint was non-functional when the stream option was set to False.
499
+ - **🚫 'WEBUI_AUTH' Configuration**: Addressed the problem where setting 'WEBUI_AUTH' to False was not being applied correctly.
500
+
501
+ ### Changed
502
+
503
+ - **📦 Dependency Update**: Upgraded 'authlib' from version 1.3.0 to 1.3.1 to ensure better security and performance enhancements.
504
+
505
+ ## [0.3.6] - 2024-06-27
506
+
507
+ ### Added
508
+
509
+ - **✨ "Functions" Feature**: You can now utilize "Functions" like filters (middleware) and pipe (model) functions directly within the WebUI. While largely compatible with Pipelines, these native functions can be executed easily within Open WebUI. Example use cases for filter functions include usage monitoring, real-time translation, moderation, and automemory. For pipe functions, the scope ranges from Cohere and Anthropic integration directly within Open WebUI, enabling "Valves" for per-user OpenAI API key usage, and much more. If you encounter issues, SAFE_MODE has been introduced.
510
+ - **📁 Files API**: Compatible with OpenAI, this feature allows for custom Retrieval-Augmented Generation (RAG) in conjunction with the Filter Function. More examples will be shared on our community platform and official documentation website.
511
+ - **🛠️ Tool Enhancements**: Tools now support citations and "Valves". Documentation will be available shortly.
512
+ - **🔗 Iframe Support via Files API**: Enables rendering HTML directly into your chat interface using functions and tools. Use cases include playing games like DOOM and Snake, displaying a weather applet, and implementing Anthropic "artifacts"-like features. Stay tuned for updates on our community platform and documentation.
513
+ - **🔒 Experimental OAuth Support**: New experimental OAuth support. Check our documentation for more details.
514
+ - **🖼️ Custom Background Support**: Set a custom background from Settings > Interface to personalize your experience.
515
+ - **🔑 AUTOMATIC1111_API_AUTH Support**: Enhanced security for the AUTOMATIC1111 API.
516
+ - **🎨 Code Highlight Optimization**: Improved code highlighting features.
517
+ - **🎙️ Voice Interruption Feature**: Reintroduced and now toggleable from Settings > Interface.
518
+ - **💤 Wakelock API**: Now in use to prevent screen dimming during important tasks.
519
+ - **🔐 API Key Privacy**: All API keys are now hidden by default for better security.
520
+ - **🔍 New Web Search Provider**: Added jina_search as a new option.
521
+ - **🌐 Enhanced Internationalization (i18n)**: Improved Korean translation and updated Chinese and Ukrainian translations.
522
+
523
+ ### Fixed
524
+
525
+ - **🔧 Conversation Mode Issue**: Fixed the issue where Conversation Mode remained active after being removed from settings.
526
+ - **📏 Scroll Button Obstruction**: Resolved the issue where the scrollToBottom button container obstructed clicks on buttons beneath it.
527
+
528
+ ### Changed
529
+
530
+ - **⏲️ AIOHTTP_CLIENT_TIMEOUT**: Now set to 'None' by default for improved configuration flexibility.
531
+ - **📞 Voice Call Enhancements**: Improved by skipping code blocks and expressions during calls.
532
+ - **🚫 Error Message Handling**: Disabled the continuation of operations with error messages.
533
+ - **🗂️ Playground Relocation**: Moved the Playground from the workspace to the user menu for better user experience.
534
+
535
+ ## [0.3.5] - 2024-06-16
536
+
537
+ ### Added
538
+
539
+ - **📞 Enhanced Voice Call**: Text-to-speech (TTS) callback now operates in real-time for each sentence, reducing latency by not waiting for full completion.
540
+ - **👆 Tap to Interrupt**: During a call, you can now stop the assistant from speaking by simply tapping, instead of using voice. This resolves the issue of the speaker's voice being mistakenly registered as input.
541
+ - **😊 Emoji Call**: Toggle this feature on from the Settings > Interface, allowing LLMs to express emotions using emojis during voice calls for a more dynamic interaction.
542
+ - **🖱️ Quick Archive/Delete**: Use the Shift key + mouseover on the chat list to swiftly archive or delete items.
543
+ - **📝 Markdown Support in Model Descriptions**: You can now format model descriptions with markdown, enabling bold text, links, etc.
544
+ - **🧠 Editable Memories**: Adds the capability to modify memories.
545
+ - **📋 Admin Panel Sorting**: Introduces the ability to sort users/chats within the admin panel.
546
+ - **🌑 Dark Mode for Quick Selectors**: Dark mode now available for chat quick selectors (prompts, models, documents).
547
+ - **🔧 Advanced Parameters**: Adds 'num_keep' and 'num_batch' to advanced parameters for customization.
548
+ - **📅 Dynamic System Prompts**: New variables '{{CURRENT_DATETIME}}', '{{CURRENT_TIME}}', '{{USER_LOCATION}}' added for system prompts. Ensure '{{USER_LOCATION}}' is toggled on from Settings > Interface.
549
+ - **🌐 Tavily Web Search**: Includes Tavily as a web search provider option.
550
+ - **🖊️ Federated Auth Usernames**: Ability to set user names for federated authentication.
551
+ - **🔗 Auto Clean URLs**: When adding connection URLs, trailing slashes are now automatically removed.
552
+ - **🌐 Enhanced Translations**: Improved Chinese and Swedish translations.
553
+
554
+ ### Fixed
555
+
556
+ - **⏳ AIOHTTP_CLIENT_TIMEOUT**: Introduced a new environment variable 'AIOHTTP_CLIENT_TIMEOUT' for requests to Ollama lasting longer than 5 minutes. Default is 300 seconds; set to blank ('') for no timeout.
557
+ - **❌ Message Delete Freeze**: Resolved an issue where message deletion would sometimes cause the web UI to freeze.
558
+
559
+ ## [0.3.4] - 2024-06-12
560
+
561
+ ### Fixed
562
+
563
+ - **🔒 Mixed Content with HTTPS Issue**: Resolved a problem where mixed content (HTTP and HTTPS) was causing security warnings and blocking resources on HTTPS sites.
564
+ - **🔍 Web Search Issue**: Addressed the problem where web search functionality was not working correctly. The 'ENABLE_RAG_LOCAL_WEB_FETCH' option has been reintroduced to restore proper web searching capabilities.
565
+ - **💾 RAG Template Not Being Saved**: Fixed an issue where the RAG template was not being saved correctly, ensuring your custom templates are now preserved as expected.
566
+
567
+ ## [0.3.3] - 2024-06-12
568
+
569
+ ### Added
570
+
571
+ - **🛠️ Native Python Function Calling**: Introducing native Python function calling within Open WebUI. We’ve also included a built-in code editor to seamlessly develop and integrate function code within the 'Tools' workspace. With this, you can significantly enhance your LLM’s capabilities by creating custom RAG pipelines, web search tools, and even agent-like features such as sending Discord messages.
572
+ - **🌐 DuckDuckGo Integration**: Added DuckDuckGo as a web search provider, giving you more search options.
573
+ - **🌏 Enhanced Translations**: Improved translations for Vietnamese and Chinese languages, making the interface more accessible.
574
+
575
+ ### Fixed
576
+
577
+ - **🔗 Web Search URL Error Handling**: Fixed the issue where a single URL error would disrupt the data loading process in Web Search mode. Now, such errors will be handled gracefully to ensure uninterrupted data loading.
578
+ - **🖥️ Frontend Responsiveness**: Resolved the problem where the frontend would stop responding if the backend encounters an error while downloading a model. Improved error handling to maintain frontend stability.
579
+ - **🔧 Dependency Issues in pip**: Fixed issues related to pip installations, ensuring all dependencies are correctly managed to prevent installation errors.
580
+
581
+ ## [0.3.2] - 2024-06-10
582
+
583
+ ### Added
584
+
585
+ - **🔍 Web Search Query Status**: The web search query will now persist in the results section to aid in easier debugging and tracking of search queries.
586
+ - **🌐 New Web Search Provider**: We have added Serply as a new option for web search providers, giving you more choices for your search needs.
587
+ - **🌏 Improved Translations**: We've enhanced translations for Chinese and Portuguese.
588
+
589
+ ### Fixed
590
+
591
+ - **🎤 Audio File Upload Issue**: The bug that prevented audio files from being uploaded in chat input has been fixed, ensuring smooth communication.
592
+ - **💬 Message Input Handling**: Improved the handling of message inputs by instantly clearing images and text after sending, along with immediate visual indications when a response message is loading, enhancing user feedback.
593
+ - **⚙️ Parameter Registration and Validation**: Fixed the issue where parameters were not registering in certain cases and addressed the problem where users were unable to save due to invalid input errors.
594
+
595
+ ## [0.3.1] - 2024-06-09
596
+
597
+ ### Fixed
598
+
599
+ - **💬 Chat Functionality**: Resolved the issue where chat functionality was not working for specific models.
600
+
601
+ ## [0.3.0] - 2024-06-09
602
+
603
+ ### Added
604
+
605
+ - **📚 Knowledge Support for Models**: Attach documents directly to models from the models workspace, enhancing the information available to each model.
606
+ - **🎙️ Hands-Free Voice Call Feature**: Initiate voice calls without needing to use your hands, making interactions more seamless.
607
+ - **📹 Video Call Feature**: Enable video calls with supported vision models like Llava and GPT-4o, adding a visual dimension to your communications.
608
+ - **🎛️ Enhanced UI for Voice Recording**: Improved user interface for the voice recording feature, making it more intuitive and user-friendly.
609
+ - **🌐 External STT Support**: Now support for external Speech-To-Text services, providing more flexibility in choosing your STT provider.
610
+ - **⚙️ Unified Settings**: Consolidated settings including document settings under a new admin settings section for easier management.
611
+ - **🌑 Dark Mode Splash Screen**: A new splash screen for dark mode, ensuring a consistent and visually appealing experience for dark mode users.
612
+ - **📥 Upload Pipeline**: Directly upload pipelines from the admin settings > pipelines section, streamlining the pipeline management process.
613
+ - **🌍 Improved Language Support**: Enhanced support for Chinese and Ukrainian languages, better catering to a global user base.
614
+
615
+ ### Fixed
616
+
617
+ - **🛠️ Playground Issue**: Fixed the playground not functioning properly, ensuring a smoother user experience.
618
+ - **🔥 Temperature Parameter Issue**: Corrected the issue where the temperature value '0' was not being passed correctly.
619
+ - **📝 Prompt Input Clearing**: Resolved prompt input textarea not being cleared right away, ensuring a clean slate for new inputs.
620
+ - **✨ Various UI Styling Issues**: Fixed numerous user interface styling problems for a more cohesive look.
621
+ - **👥 Active Users Display**: Fixed active users showing active sessions instead of actual users, now reflecting accurate user activity.
622
+ - **🌐 Community Platform Compatibility**: The Community Platform is back online and fully compatible with Open WebUI.
623
+
624
+ ### Changed
625
+
626
+ - **📝 RAG Implementation**: Updated the RAG (Retrieval-Augmented Generation) implementation to use a system prompt for context, instead of overriding the user's prompt.
627
+ - **🔄 Settings Relocation**: Moved Models, Connections, Audio, and Images settings to the admin settings for better organization.
628
+ - **✍️ Improved Title Generation**: Enhanced the default prompt for title generation, yielding better results.
629
+ - **🔧 Backend Task Management**: Tasks like title generation and search query generation are now managed on the backend side and controlled only by the admin.
630
+ - **🔍 Editable Search Query Prompt**: You can now edit the search query generation prompt, offering more control over how queries are generated.
631
+ - **📏 Prompt Length Threshold**: Set the prompt length threshold for search query generation from the admin settings, giving more customization options.
632
+ - **📣 Settings Consolidation**: Merged the Banners admin setting with the Interface admin setting for a more streamlined settings area.
633
+
634
+ ## [0.2.5] - 2024-06-05
635
+
636
+ ### Added
637
+
638
+ - **👥 Active Users Indicator**: Now you can see how many people are currently active and what they are running. This helps you gauge when performance might slow down due to a high number of users.
639
+ - **🗂️ Create Ollama Modelfile**: The option to create a modelfile for Ollama has been reintroduced in the Settings > Models section, making it easier to manage your models.
640
+ - **⚙️ Default Model Setting**: Added an option to set the default model from Settings > Interface. This feature is now easily accessible, especially convenient for mobile users as it was previously hidden.
641
+ - **🌐 Enhanced Translations**: We've improved the Chinese translations and added support for Turkmen and Norwegian languages to make the interface more accessible globally.
642
+
643
+ ### Fixed
644
+
645
+ - **📱 Mobile View Improvements**: The UI now uses dvh (dynamic viewport height) instead of vh (viewport height), providing a better and more responsive experience for mobile users.
646
+
647
+ ## [0.2.4] - 2024-06-03
648
+
649
+ ### Added
650
+
651
+ - **👤 Improved Account Pending Page**: The account pending page now displays admin details by default to avoid confusion. You can disable this feature in the admin settings if needed.
652
+ - **🌐 HTTP Proxy Support**: We have enabled the use of the 'http_proxy' environment variable in OpenAI and Ollama API calls, making it easier to configure network settings.
653
+ - **❓ Quick Access to Documentation**: You can now easily access Open WebUI documents via a question mark button located at the bottom right corner of the screen (available on larger screens like PCs).
654
+ - **🌍 Enhanced Translation**: Improvements have been made to translations.
655
+
656
+ ### Fixed
657
+
658
+ - **🔍 SearxNG Web Search**: Fixed the issue where the SearxNG web search functionality was not working properly.
659
+
660
+ ## [0.2.3] - 2024-06-03
661
+
662
+ ### Added
663
+
664
+ - **📁 Export Chat as JSON**: You can now export individual chats as JSON files from the navbar menu by navigating to 'Download > Export Chat'. This makes sharing specific conversations easier.
665
+ - **✏️ Edit Titles with Double Click**: Double-click on titles to rename them quickly and efficiently.
666
+ - **🧩 Batch Multiple Embeddings**: Introduced 'RAG_EMBEDDING_OPENAI_BATCH_SIZE' to process multiple embeddings in a batch, enhancing performance for large datasets.
667
+ - **🌍 Improved Translations**: Enhanced the translation quality across various languages for a better user experience.
668
+
669
+ ### Fixed
670
+
671
+ - **🛠️ Modelfile Migration Script**: Fixed an issue where the modelfile migration script would fail if an invalid modelfile was encountered.
672
+ - **💬 Zhuyin Input Method on Mac**: Resolved an issue where using the Zhuyin input method in the Web UI on a Mac caused text to send immediately upon pressing the enter key, leading to incorrect input.
673
+ - **🔊 Local TTS Voice Selection**: Fixed the issue where the selected local Text-to-Speech (TTS) voice was not being displayed in settings.
674
+
675
+ ## [0.2.2] - 2024-06-02
676
+
677
+ ### Added
678
+
679
+ - **🌊 Mermaid Rendering Support**: We've included support for Mermaid rendering. This allows you to create beautiful diagrams and flowcharts directly within Open WebUI.
680
+ - **🔄 New Environment Variable 'RESET_CONFIG_ON_START'**: Introducing a new environment variable: 'RESET_CONFIG_ON_START'. Set this variable to reset your configuration settings upon starting the application, making it easier to revert to default settings.
681
+
682
+ ### Fixed
683
+
684
+ - **🔧 Pipelines Filter Issue**: We've addressed an issue with the pipelines where filters were not functioning as expected.
685
+
686
+ ## [0.2.1] - 2024-06-02
687
+
688
+ ### Added
689
+
690
+ - **🖱️ Single Model Export Button**: Easily export models with just one click using the new single model export button.
691
+ - **🖥️ Advanced Parameters Support**: Added support for 'num_thread', 'use_mmap', and 'use_mlock' parameters for Ollama.
692
+ - **🌐 Improved Vietnamese Translation**: Enhanced Vietnamese language support for a better user experience for our Vietnamese-speaking community.
693
+
694
+ ### Fixed
695
+
696
+ - **🔧 OpenAI URL API Save Issue**: Corrected a problem preventing the saving of OpenAI URL API settings.
697
+ - **🚫 Display Issue with Disabled Ollama API**: Fixed the display bug causing models to appear in settings when the Ollama API was disabled.
698
+
699
+ ### Changed
700
+
701
+ - **💡 Versioning Update**: As a reminder from our previous update, version 0.2.y will focus primarily on bug fixes, while major updates will be designated as 0.x from now on for better version tracking.
702
+
703
+ ## [0.2.0] - 2024-06-01
704
+
705
+ ### Added
706
+
707
+ - **🔧 Pipelines Support**: Open WebUI now includes a plugin framework for enhanced customization and functionality (https://github.com/open-webui/pipelines). Easily add custom logic and integrate Python libraries, from AI agents to home automation APIs.
708
+ - **🔗 Function Calling via Pipelines**: Integrate function calling seamlessly through Pipelines.
709
+ - **⚖️ User Rate Limiting via Pipelines**: Implement user-specific rate limits to manage API usage efficiently.
710
+ - **📊 Usage Monitoring with Langfuse**: Track and analyze usage statistics with Langfuse integration through Pipelines.
711
+ - **🕒 Conversation Turn Limits**: Set limits on conversation turns to manage interactions better through Pipelines.
712
+ - **🛡️ Toxic Message Filtering**: Automatically filter out toxic messages to maintain a safe environment using Pipelines.
713
+ - **🔍 Web Search Support**: Introducing built-in web search capabilities via RAG API, allowing users to search using SearXNG, Google Programmatic Search Engine, Brave Search, serpstack, and serper. Activate it effortlessly by adding necessary variables from Document settings > Web Params.
714
+ - **🗂️ Models Workspace**: Create and manage model presets for both Ollama/OpenAI API. Note: The old Modelfiles workspace is deprecated.
715
+ - **🛠️ Model Builder Feature**: Build and edit all models with persistent builder mode.
716
+ - **🏷️ Model Tagging Support**: Organize models with tagging features in the models workspace.
717
+ - **📋 Model Ordering Support**: Effortlessly organize models by dragging and dropping them into the desired positions within the models workspace.
718
+ - **📈 OpenAI Generation Stats**: Access detailed generation statistics for OpenAI models.
719
+ - **📅 System Prompt Variables**: New variables added: '{{CURRENT_DATE}}' and '{{USER_NAME}}' for dynamic prompts.
720
+ - **📢 Global Banner Support**: Manage global banners from admin settings > banners.
721
+ - **🗃️ Enhanced Archived Chats Modal**: Search and export archived chats easily.
722
+ - **📂 Archive All Button**: Quickly archive all chats from settings > chats.
723
+ - **🌐 Improved Translations**: Added and improved translations for French, Croatian, Cebuano, and Vietnamese.
724
+
725
+ ### Fixed
726
+
727
+ - **🔍 Archived Chats Visibility**: Resolved issue with archived chats not showing in the admin panel.
728
+ - **💬 Message Styling**: Fixed styling issues affecting message appearance.
729
+ - **🔗 Shared Chat Responses**: Corrected the issue where shared chat response messages were not readonly.
730
+ - **🖥️ UI Enhancement**: Fixed the scrollbar overlapping issue with the message box in the user interface.
731
+
732
+ ### Changed
733
+
734
+ - **💾 User Settings Storage**: User settings are now saved on the backend, ensuring consistency across all devices.
735
+ - **📡 Unified API Requests**: The API request for getting models is now unified to '/api/models' for easier usage.
736
+ - **🔄 Versioning Update**: Our versioning will now follow the format 0.x for major updates and 0.x.y for patches.
737
+ - **📦 Export All Chats (All Users)**: Moved this functionality to the Admin Panel settings for better organization and accessibility.
738
+
739
+ ### Removed
740
+
741
+ - **🚫 Bundled LiteLLM Support Deprecated**: Migrate your LiteLLM config.yaml to a self-hosted LiteLLM instance. LiteLLM can still be added via OpenAI Connections. Download the LiteLLM config.yaml from admin settings > database > export LiteLLM config.yaml.
742
+
743
+ ## [0.1.125] - 2024-05-19
744
+
745
+ ### Added
746
+
747
+ - **🔄 Updated UI**: Chat interface revamped with chat bubbles. Easily switch back to the old style via settings > interface > chat bubble UI.
748
+ - **📂 Enhanced Sidebar UI**: Model files, documents, prompts, and playground merged into Workspace for streamlined access.
749
+ - **🚀 Improved Many Model Interaction**: All responses now displayed simultaneously for a smoother experience.
750
+ - **🐍 Python Code Execution**: Execute Python code locally in the browser with libraries like 'requests', 'beautifulsoup4', 'numpy', 'pandas', 'seaborn', 'matplotlib', 'scikit-learn', 'scipy', 'regex'.
751
+ - **🧠 Experimental Memory Feature**: Manually input personal information you want LLMs to remember via settings > personalization > memory.
752
+ - **💾 Persistent Settings**: Settings now saved as config.json for convenience.
753
+ - **🩺 Health Check Endpoint**: Added for Docker deployment.
754
+ - **↕️ RTL Support**: Toggle chat direction via settings > interface > chat direction.
755
+ - **🖥️ PowerPoint Support**: RAG pipeline now supports PowerPoint documents.
756
+ - **🌐 Language Updates**: Ukrainian, Turkish, Arabic, Chinese, Serbian, Vietnamese updated; Punjabi added.
757
+
758
+ ### Changed
759
+
760
+ - **👤 Shared Chat Update**: Shared chat now includes creator user information.
761
+
762
+ ## [0.1.124] - 2024-05-08
763
+
764
+ ### Added
765
+
766
+ - **🖼️ Improved Chat Sidebar**: Now conveniently displays time ranges and organizes chats by today, yesterday, and more.
767
+ - **📜 Citations in RAG Feature**: Easily track the context fed to the LLM with added citations in the RAG feature.
768
+ - **🔒 Auth Disable Option**: Introducing the ability to disable authentication. Set 'WEBUI_AUTH' to False to disable authentication. Note: Only applicable for fresh installations without existing users.
769
+ - **📹 Enhanced YouTube RAG Pipeline**: Now supports non-English videos for an enriched experience.
770
+ - **🔊 Specify OpenAI TTS Models**: Customize your TTS experience by specifying OpenAI TTS models.
771
+ - **🔧 Additional Environment Variables**: Discover more environment variables in our comprehensive documentation at Open WebUI Documentation (https://docs.openwebui.com).
772
+ - **🌐 Language Support**: Arabic, Finnish, and Hindi added; Improved support for German, Vietnamese, and Chinese.
773
+
774
+ ### Fixed
775
+
776
+ - **🛠️ Model Selector Styling**: Addressed styling issues for improved user experience.
777
+ - **⚠️ Warning Messages**: Resolved backend warning messages.
778
+
779
+ ### Changed
780
+
781
+ - **📝 Title Generation**: Limited output to 50 tokens.
782
+ - **📦 Helm Charts**: Removed Helm charts, now available in a separate repository (https://github.com/open-webui/helm-charts).
783
+
784
+ ## [0.1.123] - 2024-05-02
785
+
786
+ ### Added
787
+
788
+ - **🎨 New Landing Page Design**: Refreshed design for a more modern look and optimized use of screen space.
789
+ - **📹 Youtube RAG Pipeline**: Introduces dedicated RAG pipeline for Youtube videos, enabling interaction with video transcriptions directly.
790
+ - **🔧 Enhanced Admin Panel**: Streamlined user management with options to add users directly or in bulk via CSV import.
791
+ - **👥 '@' Model Integration**: Easily switch to specific models during conversations; old collaborative chat feature phased out.
792
+ - **🌐 Language Enhancements**: Swedish translation added, plus improvements to German, Spanish, and the addition of Doge translation.
793
+
794
+ ### Fixed
795
+
796
+ - **🗑️ Delete Chat Shortcut**: Addressed issue where shortcut wasn't functioning.
797
+ - **🖼️ Modal Closing Bug**: Resolved unexpected closure of modal when dragging from within.
798
+ - **✏️ Edit Button Styling**: Fixed styling inconsistency with edit buttons.
799
+ - **🌐 Image Generation Compatibility Issue**: Rectified image generation compatibility issue with third-party APIs.
800
+ - **📱 iOS PWA Icon Fix**: Corrected iOS PWA home screen icon shape.
801
+ - **🔍 Scroll Gesture Bug**: Adjusted gesture sensitivity to prevent accidental activation when scrolling through code on mobile; now requires scrolling from the leftmost side to open the sidebar.
802
+
803
+ ### Changed
804
+
805
+ - **🔄 Unlimited Context Length**: Advanced settings now allow unlimited max context length (previously limited to 16000).
806
+ - **👑 Super Admin Assignment**: The first signup is automatically assigned a super admin role, unchangeable by other admins.
807
+ - **🛡️ Admin User Restrictions**: User action buttons from the admin panel are now disabled for users with admin roles.
808
+ - **🔝 Default Model Selector**: Set as default model option now exclusively available on the landing page.
809
+
810
+ ## [0.1.122] - 2024-04-27
811
+
812
+ ### Added
813
+
814
+ - **🌟 Enhanced RAG Pipeline**: Now with hybrid searching via 'BM25', reranking powered by 'CrossEncoder', and configurable relevance score thresholds.
815
+ - **🛢️ External Database Support**: Seamlessly connect to custom SQLite or Postgres databases using the 'DATABASE_URL' environment variable.
816
+ - **🌐 Remote ChromaDB Support**: Introducing the capability to connect to remote ChromaDB servers.
817
+ - **👨‍💼 Improved Admin Panel**: Admins can now conveniently check users' chat lists and last active status directly from the admin panel.
818
+ - **🎨 Splash Screen**: Introducing a loading splash screen for a smoother user experience.
819
+ - **🌍 Language Support Expansion**: Added support for Bangla (bn-BD), along with enhancements to Chinese, Spanish, and Ukrainian translations.
820
+ - **💻 Improved LaTeX Rendering Performance**: Enjoy faster rendering times for LaTeX equations.
821
+ - **🔧 More Environment Variables**: Explore additional environment variables in our documentation (https://docs.openwebui.com), including the 'ENABLE_LITELLM' option to manage memory usage.
822
+
823
+ ### Fixed
824
+
825
+ - **🔧 Ollama Compatibility**: Resolved errors occurring when Ollama server version isn't an integer, such as SHA builds or RCs.
826
+ - **🐛 Various OpenAI API Issues**: Addressed several issues related to the OpenAI API.
827
+ - **🛑 Stop Sequence Issue**: Fixed the problem where the stop sequence with a backslash '\' was not functioning.
828
+ - **🔤 Font Fallback**: Corrected font fallback issue.
829
+
830
+ ### Changed
831
+
832
+ - **⌨️ Prompt Input Behavior on Mobile**: Enter key prompt submission disabled on mobile devices for improved user experience.
833
+
834
+ ## [0.1.121] - 2024-04-24
835
+
836
+ ### Fixed
837
+
838
+ - **🔧 Translation Issues**: Addressed various translation discrepancies.
839
+ - **🔒 LiteLLM Security Fix**: Updated LiteLLM version to resolve a security vulnerability.
840
+ - **🖥️ HTML Tag Display**: Rectified the issue where the '< br >' tag wasn't displaying correctly.
841
+ - **🔗 WebSocket Connection**: Resolved the failure of WebSocket connection under HTTPS security for ComfyUI server.
842
+ - **📜 FileReader Optimization**: Implemented FileReader initialization per image in multi-file drag & drop to ensure reusability.
843
+ - **🏷️ Tag Display**: Corrected tag display inconsistencies.
844
+ - **📦 Archived Chat Styling**: Fixed styling issues in archived chat.
845
+ - **🔖 Safari Copy Button Bug**: Addressed the bug where the copy button failed to copy links in Safari.
846
+
847
+ ## [0.1.120] - 2024-04-20
848
+
849
+ ### Added
850
+
851
+ - **📦 Archive Chat Feature**: Easily archive chats with a new sidebar button, and access archived chats via the profile button > archived chats.
852
+ - **🔊 Configurable Text-to-Speech Endpoint**: Customize your Text-to-Speech experience with configurable OpenAI endpoints.
853
+ - **🛠️ Improved Error Handling**: Enhanced error message handling for connection failures.
854
+ - **⌨️ Enhanced Shortcut**: When editing messages, use ctrl/cmd+enter to save and submit, and esc to close.
855
+ - **🌐 Language Support**: Added support for Georgian and enhanced translations for Portuguese and Vietnamese.
856
+
857
+ ### Fixed
858
+
859
+ - **🔧 Model Selector**: Resolved issue where default model selection was not saving.
860
+ - **🔗 Share Link Copy Button**: Fixed bug where the copy button wasn't copying links in Safari.
861
+ - **🎨 Light Theme Styling**: Addressed styling issue with the light theme.
862
+
863
+ ## [0.1.119] - 2024-04-16
864
+
865
+ ### Added
866
+
867
+ - **🌟 Enhanced RAG Embedding Support**: Ollama, and OpenAI models can now be used for RAG embedding model.
868
+ - **🔄 Seamless Integration**: Copy 'ollama run <model name>' directly from Ollama page to easily select and pull models.
869
+ - **🏷️ Tagging Feature**: Add tags to chats directly via the sidebar chat menu.
870
+ - **📱 Mobile Accessibility**: Swipe left and right on mobile to effortlessly open and close the sidebar.
871
+ - **🔍 Improved Navigation**: Admin panel now supports pagination for user list.
872
+ - **🌍 Additional Language Support**: Added Polish language support.
873
+
874
+ ### Fixed
875
+
876
+ - **🌍 Language Enhancements**: Vietnamese and Spanish translations have been improved.
877
+ - **🔧 Helm Fixes**: Resolved issues with Helm trailing slash and manifest.json.
878
+
879
+ ### Changed
880
+
881
+ - **🐳 Docker Optimization**: Updated docker image build process to utilize 'uv' for significantly faster builds compared to 'pip3'.
882
+
883
+ ## [0.1.118] - 2024-04-10
884
+
885
+ ### Added
886
+
887
+ - **🦙 Ollama and CUDA Images**: Added support for ':ollama' and ':cuda' tagged images.
888
+ - **👍 Enhanced Response Rating**: Now you can annotate your ratings for better feedback.
889
+ - **👤 User Initials Profile Photo**: User initials are now the default profile photo.
890
+ - **🔍 Update RAG Embedding Model**: Customize RAG embedding model directly in document settings.
891
+ - **🌍 Additional Language Support**: Added Turkish language support.
892
+
893
+ ### Fixed
894
+
895
+ - **🔒 Share Chat Permission**: Resolved issue with chat sharing permissions.
896
+ - **🛠 Modal Close**: Modals can now be closed using the Esc key.
897
+
898
+ ### Changed
899
+
900
+ - **🎨 Admin Panel Styling**: Refreshed styling for the admin panel.
901
+ - **🐳 Docker Image Build**: Updated docker image build process for improved efficiency.
902
+
903
+ ## [0.1.117] - 2024-04-03
904
+
905
+ ### Added
906
+
907
+ - 🗨️ **Local Chat Sharing**: Share chat links seamlessly between users.
908
+ - 🔑 **API Key Generation Support**: Generate secret keys to leverage Open WebUI with OpenAI libraries.
909
+ - 📄 **Chat Download as PDF**: Easily download chats in PDF format.
910
+ - 📝 **Improved Logging**: Enhancements to logging functionality.
911
+ - 📧 **Trusted Email Authentication**: Authenticate using a trusted email header.
912
+
913
+ ### Fixed
914
+
915
+ - 🌷 **Enhanced Dutch Translation**: Improved translation for Dutch users.
916
+ - ⚪ **White Theme Styling**: Resolved styling issue with the white theme.
917
+ - 📜 **LaTeX Chat Screen Overflow**: Fixed screen overflow issue with LaTeX rendering.
918
+ - 🔒 **Security Patches**: Applied necessary security patches.
919
+
920
+ ## [0.1.116] - 2024-03-31
921
+
922
+ ### Added
923
+
924
+ - **🔄 Enhanced UI**: Model selector now conveniently located in the navbar, enabling seamless switching between multiple models during conversations.
925
+ - **🔍 Improved Model Selector**: Directly pull a model from the selector/Models now display detailed information for better understanding.
926
+ - **💬 Webhook Support**: Now compatible with Google Chat and Microsoft Teams.
927
+ - **🌐 Localization**: Korean translation (I18n) now available.
928
+ - **🌑 Dark Theme**: OLED dark theme introduced for reduced strain during prolonged usage.
929
+ - **🏷️ Tag Autocomplete**: Dropdown feature added for effortless chat tagging.
930
+
931
+ ### Fixed
932
+
933
+ - **🔽 Auto-Scrolling**: Addressed OpenAI auto-scrolling issue.
934
+ - **🏷️ Tag Validation**: Implemented tag validation to prevent empty string tags.
935
+ - **🚫 Model Whitelisting**: Resolved LiteLLM model whitelisting issue.
936
+ - **✅ Spelling**: Corrected various spelling issues for improved readability.
937
+
938
+ ## [0.1.115] - 2024-03-24
939
+
940
+ ### Added
941
+
942
+ - **🔍 Custom Model Selector**: Easily find and select custom models with the new search filter feature.
943
+ - **🛑 Cancel Model Download**: Added the ability to cancel model downloads.
944
+ - **🎨 Image Generation ComfyUI**: Image generation now supports ComfyUI.
945
+ - **🌟 Updated Light Theme**: Updated the light theme for a fresh look.
946
+ - **🌍 Additional Language Support**: Now supporting Bulgarian, Italian, Portuguese, Japanese, and Dutch.
947
+
948
+ ### Fixed
949
+
950
+ - **🔧 Fixed Broken Experimental GGUF Upload**: Resolved issues with experimental GGUF upload functionality.
951
+
952
+ ### Changed
953
+
954
+ - **🔄 Vector Storage Reset Button**: Moved the reset vector storage button to document settings.
955
+
956
+ ## [0.1.114] - 2024-03-20
957
+
958
+ ### Added
959
+
960
+ - **🔗 Webhook Integration**: Now you can subscribe to new user sign-up events via webhook. Simply navigate to the admin panel > admin settings > webhook URL.
961
+ - **🛡️ Enhanced Model Filtering**: Alongside Ollama, OpenAI proxy model whitelisting, we've added model filtering functionality for LiteLLM proxy.
962
+ - **🌍 Expanded Language Support**: Spanish, Catalan, and Vietnamese languages are now available, with improvements made to others.
963
+
964
+ ### Fixed
965
+
966
+ - **🔧 Input Field Spelling**: Resolved issue with spelling mistakes in input fields.
967
+ - **🖊️ Light Mode Styling**: Fixed styling issue with light mode in document adding.
968
+
969
+ ### Changed
970
+
971
+ - **🔄 Language Sorting**: Languages are now sorted alphabetically by their code for improved organization.
972
+
973
+ ## [0.1.113] - 2024-03-18
974
+
975
+ ### Added
976
+
977
+ - 🌍 **Localization**: You can now change the UI language in Settings > General. We support Ukrainian, German, Farsi (Persian), Traditional and Simplified Chinese and French translations. You can help us to translate the UI into your language! More info in our [CONTRIBUTION.md](https://github.com/open-webui/open-webui/blob/main/docs/CONTRIBUTING.md#-translations-and-internationalization).
978
+ - 🎨 **System-wide Theme**: Introducing a new system-wide theme for enhanced visual experience.
979
+
980
+ ### Fixed
981
+
982
+ - 🌑 **Dark Background on Select Fields**: Improved readability by adding a dark background to select fields, addressing issues on certain browsers/devices.
983
+ - **Multiple OPENAI_API_BASE_URLS Issue**: Resolved issue where multiple base URLs caused conflicts when one wasn't functioning.
984
+ - **RAG Encoding Issue**: Fixed encoding problem in RAG.
985
+ - **npm Audit Fix**: Addressed npm audit findings.
986
+ - **Reduced Scroll Threshold**: Improved auto-scroll experience by reducing the scroll threshold from 50px to 5px.
987
+
988
+ ### Changed
989
+
990
+ - 🔄 **Sidebar UI Update**: Updated sidebar UI to feature a chat menu dropdown, replacing two icons for improved navigation.
991
+
992
+ ## [0.1.112] - 2024-03-15
993
+
994
+ ### Fixed
995
+
996
+ - 🗨️ Resolved chat malfunction after image generation.
997
+ - 🎨 Fixed various RAG issues.
998
+ - 🧪 Rectified experimental broken GGUF upload logic.
999
+
1000
+ ## [0.1.111] - 2024-03-10
1001
+
1002
+ ### Added
1003
+
1004
+ - 🛡️ **Model Whitelisting**: Admins now have the ability to whitelist models for users with the 'user' role.
1005
+ - 🔄 **Update All Models**: Added a convenient button to update all models at once.
1006
+ - 📄 **Toggle PDF OCR**: Users can now toggle PDF OCR option for improved parsing performance.
1007
+ - 🎨 **DALL-E Integration**: Introduced DALL-E integration for image generation alongside automatic1111.
1008
+ - 🛠️ **RAG API Refactoring**: Refactored RAG logic and exposed its API, with additional documentation to follow.
1009
+
1010
+ ### Fixed
1011
+
1012
+ - 🔒 **Max Token Settings**: Added max token settings for anthropic/claude-3-sonnet-20240229 (Issue #1094).
1013
+ - 🔧 **Misalignment Issue**: Corrected misalignment of Edit and Delete Icons when Chat Title is Empty (Issue #1104).
1014
+ - 🔄 **Context Loss Fix**: Resolved RAG losing context on model response regeneration with Groq models via API key (Issue #1105).
1015
+ - 📁 **File Handling Bug**: Addressed File Not Found Notification when Dropping a Conversation Element (Issue #1098).
1016
+ - 🖱️ **Dragged File Styling**: Fixed dragged file layover styling issue.
1017
+
1018
+ ## [0.1.110] - 2024-03-06
1019
+
1020
+ ### Added
1021
+
1022
+ - **🌐 Multiple OpenAI Servers Support**: Enjoy seamless integration with multiple OpenAI-compatible APIs, now supported natively.
1023
+
1024
+ ### Fixed
1025
+
1026
+ - **🔍 OCR Issue**: Resolved PDF parsing issue caused by OCR malfunction.
1027
+ - **🚫 RAG Issue**: Fixed the RAG functionality, ensuring it operates smoothly.
1028
+ - **📄 "Add Docs" Model Button**: Addressed the non-functional behavior of the "Add Docs" model button.
1029
+
1030
+ ## [0.1.109] - 2024-03-06
1031
+
1032
+ ### Added
1033
+
1034
+ - **🔄 Multiple Ollama Servers Support**: Enjoy enhanced scalability and performance with support for multiple Ollama servers in a single WebUI. Load balancing features are now available, providing improved efficiency (#788, #278).
1035
+ - **🔧 Support for Claude 3 and Gemini**: Responding to user requests, we've expanded our toolset to include Claude 3 and Gemini, offering a wider range of functionalities within our platform (#1064).
1036
+ - **🔍 OCR Functionality for PDF Loader**: We've augmented our PDF loader with Optical Character Recognition (OCR) capabilities. Now, extract text from scanned documents and images within PDFs, broadening the scope of content processing (#1050).
1037
+
1038
+ ### Fixed
1039
+
1040
+ - **🛠️ RAG Collection**: Implemented a dynamic mechanism to recreate RAG collections, ensuring users have up-to-date and accurate data (#1031).
1041
+ - **📝 User Agent Headers**: Fixed issue of RAG web requests being sent with empty user_agent headers, reducing rejections from certain websites. Realistic headers are now utilized for these requests (#1024).
1042
+ - **⏹️ Playground Cancel Functionality**: Introducing a new "Cancel" option for stopping Ollama generation in the Playground, enhancing user control and usability (#1006).
1043
+ - **🔤 Typographical Error in 'ASSISTANT' Field**: Corrected a typographical error in the 'ASSISTANT' field within the GGUF model upload template for accuracy and consistency (#1061).
1044
+
1045
+ ### Changed
1046
+
1047
+ - **🔄 Refactored Message Deletion Logic**: Streamlined message deletion process for improved efficiency and user experience, simplifying interactions within the platform (#1004).
1048
+ - **⚠️ Deprecation of `OLLAMA_API_BASE_URL`**: Deprecated `OLLAMA_API_BASE_URL` environment variable; recommend using `OLLAMA_BASE_URL` instead. Refer to our documentation for further details.
1049
+
1050
+ ## [0.1.108] - 2024-03-02
1051
+
1052
+ ### Added
1053
+
1054
+ - **🎮 Playground Feature (Beta)**: Explore the full potential of the raw API through an intuitive UI with our new playground feature, accessible to admins. Simply click on the bottom name area of the sidebar to access it. The playground feature offers two modes text completion (notebook) and chat completion. As it's in beta, please report any issues you encounter.
1055
+ - **🛠️ Direct Database Download for Admins**: Admins can now download the database directly from the WebUI via the admin settings.
1056
+ - **🎨 Additional RAG Settings**: Customize your RAG process with the ability to edit the TOP K value. Navigate to Documents > Settings > General to make changes.
1057
+ - **🖥️ UI Improvements**: Tooltips now available in the input area and sidebar handle. More tooltips will be added across other parts of the UI.
1058
+
1059
+ ### Fixed
1060
+
1061
+ - Resolved input autofocus issue on mobile when the sidebar is open, making it easier to use.
1062
+ - Corrected numbered list display issue in Safari (#963).
1063
+ - Restricted user ability to delete chats without proper permissions (#993).
1064
+
1065
+ ### Changed
1066
+
1067
+ - **Simplified Ollama Settings**: Ollama settings now don't require the `/api` suffix. You can now utilize the Ollama base URL directly, e.g., `http://localhost:11434`. Also, an `OLLAMA_BASE_URL` environment variable has been added.
1068
+ - **Database Renaming**: Starting from this release, `ollama.db` will be automatically renamed to `webui.db`.
1069
+
1070
+ ## [0.1.107] - 2024-03-01
1071
+
1072
+ ### Added
1073
+
1074
+ - **🚀 Makefile and LLM Update Script**: Included Makefile and a script for LLM updates in the repository.
1075
+
1076
+ ### Fixed
1077
+
1078
+ - Corrected issue where links in the settings modal didn't appear clickable (#960).
1079
+ - Fixed problem with web UI port not taking effect due to incorrect environment variable name in run-compose.sh (#996).
1080
+ - Enhanced user experience by displaying chat in browser title and enabling automatic scrolling to the bottom (#992).
1081
+
1082
+ ### Changed
1083
+
1084
+ - Upgraded toast library from `svelte-french-toast` to `svelte-sonner` for a more polished UI.
1085
+ - Enhanced accessibility with the addition of dark mode on the authentication page.
1086
+
1087
+ ## [0.1.106] - 2024-02-27
1088
+
1089
+ ### Added
1090
+
1091
+ - **🎯 Auto-focus Feature**: The input area now automatically focuses when initiating or opening a chat conversation.
1092
+
1093
+ ### Fixed
1094
+
1095
+ - Corrected typo from "HuggingFace" to "Hugging Face" (Issue #924).
1096
+ - Resolved bug causing errors in chat completion API calls to OpenAI due to missing "num_ctx" parameter (Issue #927).
1097
+ - Fixed issues preventing text editing, selection, and cursor retention in the input field (Issue #940).
1098
+ - Fixed a bug where defining an OpenAI-compatible API server using 'OPENAI_API_BASE_URL' containing 'openai' string resulted in hiding models not containing 'gpt' string from the model menu. (Issue #930)
1099
+
1100
+ ## [0.1.105] - 2024-02-25
1101
+
1102
+ ### Added
1103
+
1104
+ - **📄 Document Selection**: Now you can select and delete multiple documents at once for easier management.
1105
+
1106
+ ### Changed
1107
+
1108
+ - **🏷️ Document Pre-tagging**: Simply click the "+" button at the top, enter tag names in the popup window, or select from a list of existing tags. Then, upload files with the added tags for streamlined organization.
1109
+
1110
+ ## [0.1.104] - 2024-02-25
1111
+
1112
+ ### Added
1113
+
1114
+ - **🔄 Check for Updates**: Keep your system current by checking for updates conveniently located in Settings > About.
1115
+ - **🗑️ Automatic Tag Deletion**: Unused tags on the sidebar will now be deleted automatically with just a click.
1116
+
1117
+ ### Changed
1118
+
1119
+ - **🎨 Modernized Styling**: Enjoy a refreshed look with updated styling for a more contemporary experience.
1120
+
1121
+ ## [0.1.103] - 2024-02-25
1122
+
1123
+ ### Added
1124
+
1125
+ - **🔗 Built-in LiteLLM Proxy**: Now includes LiteLLM proxy within Open WebUI for enhanced functionality.
1126
+
1127
+ - Easily integrate existing LiteLLM configurations using `-v /path/to/config.yaml:/app/backend/data/litellm/config.yaml` flag.
1128
+ - When utilizing Docker container to run Open WebUI, ensure connections to localhost use `host.docker.internal`.
1129
+
1130
+ - **🖼️ Image Generation Enhancements**: Introducing Advanced Settings with Image Preview Feature.
1131
+ - Customize image generation by setting the number of steps; defaults to A1111 value.
1132
+
1133
+ ### Fixed
1134
+
1135
+ - Resolved issue with RAG scan halting document loading upon encountering unsupported MIME types or exceptions (Issue #866).
1136
+
1137
+ ### Changed
1138
+
1139
+ - Ollama is no longer required to run Open WebUI.
1140
+ - Access our comprehensive documentation at [Open WebUI Documentation](https://docs.openwebui.com/).
1141
+
1142
+ ## [0.1.102] - 2024-02-22
1143
+
1144
+ ### Added
1145
+
1146
+ - **🖼️ Image Generation**: Generate Images using the AUTOMATIC1111/stable-diffusion-webui API. You can set this up in Settings > Images.
1147
+ - **📝 Change title generation prompt**: Change the prompt used to generate titles for your chats. You can set this up in the Settings > Interface.
1148
+ - **🤖 Change embedding model**: Change the embedding model used to generate embeddings for your chats in the Dockerfile. Use any sentence transformer model from huggingface.co.
1149
+ - **📢 CHANGELOG.md/Popup**: This popup will show you the latest changes.
1150
+
1151
+ ## [0.1.101] - 2024-02-22
1152
+
1153
+ ### Fixed
1154
+
1155
+ - LaTex output formatting issue (#828)
1156
+
1157
+ ### Changed
1158
+
1159
+ - Instead of having the previous 1.0.0-alpha.101, we switched to semantic versioning as a way to respect global conventions.
CODE_OF_CONDUCT.md ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, religion, or sexual identity
10
+ and orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
13
+
14
+ ## Our Standards
15
+
16
+ Examples of behavior that contribute to a positive environment for our community include:
17
+
18
+ - Demonstrating empathy and kindness toward other people
19
+ - Being respectful of differing opinions, viewpoints, and experiences
20
+ - Giving and gracefully accepting constructive feedback
21
+ - Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
22
+ - Focusing on what is best not just for us as individuals, but for the overall community
23
+
24
+ Examples of unacceptable behavior include:
25
+
26
+ - The use of sexualized language or imagery, and sexual attention or advances of any kind
27
+ - Trolling, insulting or derogatory comments, and personal or political attacks
28
+ - Public or private harassment
29
+ - Publishing others' private information, such as a physical or email address, without their explicit permission
30
+ - **Spamming of any kind**
31
+ - Aggressive sales tactics targeting our community members are strictly prohibited. You can mention your product if it's relevant to the discussion, but under no circumstances should you push it forcefully
32
+ - Other conduct which could reasonably be considered inappropriate in a professional setting
33
+
34
+ ## Enforcement Responsibilities
35
+
36
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
37
+
38
+ ## Scope
39
+
40
+ This Code of Conduct applies within all community spaces and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
41
+
42
+ ## Enforcement
43
+
44
+ Instances of abusive, harassing, spamming, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at [email protected]. All complaints will be reviewed and investigated promptly and fairly.
45
+
46
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
47
+
48
+ ## Enforcement Guidelines
49
+
50
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
51
+
52
+ ### 1. Temporary Ban
53
+
54
+ **Community Impact**: Any violation of community standards, including but not limited to inappropriate language, unprofessional behavior, harassment, or spamming.
55
+
56
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
57
+
58
+ ### 2. Permanent Ban
59
+
60
+ **Community Impact**: Repeated or severe violations of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
61
+
62
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
63
+
64
+ ## Attribution
65
+
66
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
67
+ version 2.0, available at
68
+ https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
69
+
70
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct
71
+ enforcement ladder](https://github.com/mozilla/diversity).
72
+
73
+ [homepage]: https://www.contributor-covenant.org
74
+
75
+ For answers to common questions about this code of conduct, see the FAQ at
76
+ https://www.contributor-covenant.org/faq. Translations are available at
77
+ https://www.contributor-covenant.org/translations.
Caddyfile.localhost ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Run with
2
+ # caddy run --envfile ./example.env --config ./Caddyfile.localhost
3
+ #
4
+ # This is configured for
5
+ # - Automatic HTTPS (even for localhost)
6
+ # - Reverse Proxying to Ollama API Base URL (http://localhost:11434/api)
7
+ # - CORS
8
+ # - HTTP Basic Auth API Tokens (uncomment basicauth section)
9
+
10
+
11
+ # CORS Preflight (OPTIONS) + Request (GET, POST, PATCH, PUT, DELETE)
12
+ (cors-api) {
13
+ @match-cors-api-preflight method OPTIONS
14
+ handle @match-cors-api-preflight {
15
+ header {
16
+ Access-Control-Allow-Origin "{http.request.header.origin}"
17
+ Access-Control-Allow-Methods "GET, POST, PUT, PATCH, DELETE, OPTIONS"
18
+ Access-Control-Allow-Headers "Origin, Accept, Authorization, Content-Type, X-Requested-With"
19
+ Access-Control-Allow-Credentials "true"
20
+ Access-Control-Max-Age "3600"
21
+ defer
22
+ }
23
+ respond "" 204
24
+ }
25
+
26
+ @match-cors-api-request {
27
+ not {
28
+ header Origin "{http.request.scheme}://{http.request.host}"
29
+ }
30
+ header Origin "{http.request.header.origin}"
31
+ }
32
+ handle @match-cors-api-request {
33
+ header {
34
+ Access-Control-Allow-Origin "{http.request.header.origin}"
35
+ Access-Control-Allow-Methods "GET, POST, PUT, PATCH, DELETE, OPTIONS"
36
+ Access-Control-Allow-Headers "Origin, Accept, Authorization, Content-Type, X-Requested-With"
37
+ Access-Control-Allow-Credentials "true"
38
+ Access-Control-Max-Age "3600"
39
+ defer
40
+ }
41
+ }
42
+ }
43
+
44
+ # replace localhost with example.com or whatever
45
+ localhost {
46
+ ## HTTP Basic Auth
47
+ ## (uncomment to enable)
48
+ # basicauth {
49
+ # # see .example.env for how to generate tokens
50
+ # {env.OLLAMA_API_ID} {env.OLLAMA_API_TOKEN_DIGEST}
51
+ # }
52
+
53
+ handle /api/* {
54
+ # Comment to disable CORS
55
+ import cors-api
56
+
57
+ reverse_proxy localhost:11434
58
+ }
59
+
60
+ # Same-Origin Static Web Server
61
+ file_server {
62
+ root ./build/
63
+ }
64
+ }
Dockerfile ADDED
@@ -0,0 +1,166 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # syntax=docker/dockerfile:1
2
+ # Initialize device type args
3
+ # use build args in the docker build commmand with --build-arg="BUILDARG=true"
4
+ ARG USE_CUDA=false
5
+ ARG USE_OLLAMA=false
6
+ # Tested with cu117 for CUDA 11 and cu121 for CUDA 12 (default)
7
+ ARG USE_CUDA_VER=cu121
8
+ # any sentence transformer model; models to use can be found at https://huggingface.co/models?library=sentence-transformers
9
+ # Leaderboard: https://huggingface.co/spaces/mteb/leaderboard
10
+ # for better performance and multilangauge support use "intfloat/multilingual-e5-large" (~2.5GB) or "intfloat/multilingual-e5-base" (~1.5GB)
11
+ # IMPORTANT: If you change the embedding model (sentence-transformers/all-MiniLM-L6-v2) and vice versa, you aren't able to use RAG Chat with your previous documents loaded in the WebUI! You need to re-embed them.
12
+ ARG USE_EMBEDDING_MODEL=sentence-transformers/all-MiniLM-L6-v2
13
+ ARG USE_RERANKING_MODEL=""
14
+ ARG BUILD_HASH=dev-build
15
+ # Override at your own risk - non-root configurations are untested
16
+ ARG UID=0
17
+ ARG GID=0
18
+
19
+ ######## WebUI frontend ########
20
+ FROM --platform=$BUILDPLATFORM node:22-alpine3.20 AS build
21
+ ARG BUILD_HASH
22
+
23
+ WORKDIR /app
24
+
25
+ COPY package.json package-lock.json ./
26
+ RUN npm ci
27
+
28
+ COPY . .
29
+ ENV APP_BUILD_HASH=${BUILD_HASH}
30
+ RUN npm run build
31
+
32
+ ######## WebUI backend ########
33
+ FROM python:3.11-slim-bookworm AS base
34
+
35
+ # Use args
36
+ ARG USE_CUDA
37
+ ARG USE_OLLAMA
38
+ ARG USE_CUDA_VER
39
+ ARG USE_EMBEDDING_MODEL
40
+ ARG USE_RERANKING_MODEL
41
+ ARG UID
42
+ ARG GID
43
+
44
+ ## Basis ##
45
+ ENV ENV=prod \
46
+ PORT=8080 \
47
+ # pass build args to the build
48
+ USE_OLLAMA_DOCKER=${USE_OLLAMA} \
49
+ USE_CUDA_DOCKER=${USE_CUDA} \
50
+ USE_CUDA_DOCKER_VER=${USE_CUDA_VER} \
51
+ USE_EMBEDDING_MODEL_DOCKER=${USE_EMBEDDING_MODEL} \
52
+ USE_RERANKING_MODEL_DOCKER=${USE_RERANKING_MODEL}
53
+
54
+ ## Basis URL Config ##
55
+ ENV OLLAMA_BASE_URL="/ollama" \
56
+ OPENAI_API_BASE_URL=""
57
+
58
+ ## API Key and Security Config ##
59
+ ENV OPENAI_API_KEY="" \
60
+ WEBUI_SECRET_KEY="" \
61
+ SCARF_NO_ANALYTICS=true \
62
+ DO_NOT_TRACK=true \
63
+ ANONYMIZED_TELEMETRY=false
64
+
65
+ #### Other models #########################################################
66
+ ## whisper TTS model settings ##
67
+ ENV WHISPER_MODEL="base" \
68
+ WHISPER_MODEL_DIR="/app/backend/data/cache/whisper/models"
69
+
70
+ ## RAG Embedding model settings ##
71
+ ENV RAG_EMBEDDING_MODEL="$USE_EMBEDDING_MODEL_DOCKER" \
72
+ RAG_RERANKING_MODEL="$USE_RERANKING_MODEL_DOCKER" \
73
+ SENTENCE_TRANSFORMERS_HOME="/app/backend/data/cache/embedding/models"
74
+
75
+ ## Hugging Face download cache ##
76
+ ENV HF_HOME="/app/backend/data/cache/embedding/models"
77
+
78
+ ## Torch Extensions ##
79
+ # ENV TORCH_EXTENSIONS_DIR="/.cache/torch_extensions"
80
+
81
+ #### Other models ##########################################################
82
+
83
+ WORKDIR /app/backend
84
+
85
+ ENV HOME=/root
86
+ # Create user and group if not root
87
+ RUN if [ $UID -ne 0 ]; then \
88
+ if [ $GID -ne 0 ]; then \
89
+ addgroup --gid $GID app; \
90
+ fi; \
91
+ adduser --uid $UID --gid $GID --home $HOME --disabled-password --no-create-home app; \
92
+ fi
93
+
94
+ RUN mkdir -p $HOME/.cache/chroma
95
+ RUN echo -n 00000000-0000-0000-0000-000000000000 > $HOME/.cache/chroma/telemetry_user_id
96
+
97
+ # Make sure the user has access to the app and root directory
98
+ RUN chown -R $UID:$GID /app $HOME
99
+
100
+ RUN if [ "$USE_OLLAMA" = "true" ]; then \
101
+ apt-get update && \
102
+ # Install pandoc and netcat
103
+ apt-get install -y --no-install-recommends git build-essential pandoc netcat-openbsd curl && \
104
+ apt-get install -y --no-install-recommends gcc python3-dev && \
105
+ # for RAG OCR
106
+ apt-get install -y --no-install-recommends ffmpeg libsm6 libxext6 && \
107
+ # install helper tools
108
+ apt-get install -y --no-install-recommends curl jq && \
109
+ # install ollama
110
+ curl -fsSL https://ollama.com/install.sh | sh && \
111
+ # cleanup
112
+ rm -rf /var/lib/apt/lists/*; \
113
+ else \
114
+ apt-get update && \
115
+ # Install pandoc, netcat and gcc
116
+ apt-get install -y --no-install-recommends git build-essential pandoc gcc netcat-openbsd curl jq && \
117
+ apt-get install -y --no-install-recommends gcc python3-dev && \
118
+ # for RAG OCR
119
+ apt-get install -y --no-install-recommends ffmpeg libsm6 libxext6 && \
120
+ # cleanup
121
+ rm -rf /var/lib/apt/lists/*; \
122
+ fi
123
+
124
+ # install python dependencies
125
+ COPY --chown=$UID:$GID ./backend/requirements.txt ./requirements.txt
126
+
127
+ RUN pip3 install uv && \
128
+ if [ "$USE_CUDA" = "true" ]; then \
129
+ # If you use CUDA the whisper and embedding model will be downloaded on first use
130
+ pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/$USE_CUDA_DOCKER_VER --no-cache-dir && \
131
+ uv pip install --system -r requirements.txt --no-cache-dir && \
132
+ python -c "import os; from sentence_transformers import SentenceTransformer; SentenceTransformer(os.environ['RAG_EMBEDDING_MODEL'], device='cpu')" && \
133
+ python -c "import os; from faster_whisper import WhisperModel; WhisperModel(os.environ['WHISPER_MODEL'], device='cpu', compute_type='int8', download_root=os.environ['WHISPER_MODEL_DIR'])"; \
134
+ else \
135
+ pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu --no-cache-dir && \
136
+ uv pip install --system -r requirements.txt --no-cache-dir && \
137
+ python -c "import os; from sentence_transformers import SentenceTransformer; SentenceTransformer(os.environ['RAG_EMBEDDING_MODEL'], device='cpu')" && \
138
+ python -c "import os; from faster_whisper import WhisperModel; WhisperModel(os.environ['WHISPER_MODEL'], device='cpu', compute_type='int8', download_root=os.environ['WHISPER_MODEL_DIR'])"; \
139
+ fi; \
140
+ chown -R $UID:$GID /app/backend/data/
141
+
142
+
143
+
144
+ # copy embedding weight from build
145
+ # RUN mkdir -p /root/.cache/chroma/onnx_models/all-MiniLM-L6-v2
146
+ # COPY --from=build /app/onnx /root/.cache/chroma/onnx_models/all-MiniLM-L6-v2/onnx
147
+
148
+ # copy built frontend files
149
+ COPY --chown=$UID:$GID --from=build /app/build /app/build
150
+ COPY --chown=$UID:$GID --from=build /app/CHANGELOG.md /app/CHANGELOG.md
151
+ COPY --chown=$UID:$GID --from=build /app/package.json /app/package.json
152
+
153
+ # copy backend files
154
+ COPY --chown=$UID:$GID ./backend .
155
+
156
+ EXPOSE 8080
157
+
158
+ HEALTHCHECK CMD curl --silent --fail http://localhost:${PORT:-8080}/health | jq -ne 'input.status == true' || exit 1
159
+
160
+ USER $UID:$GID
161
+
162
+ ARG BUILD_HASH
163
+ ENV WEBUI_BUILD_VERSION=${BUILD_HASH}
164
+ ENV DOCKER=true
165
+
166
+ CMD [ "bash", "start.sh"]
INSTALLATION.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### Installing Both Ollama and Open WebUI Using Kustomize
2
+
3
+ For cpu-only pod
4
+
5
+ ```bash
6
+ kubectl apply -f ./kubernetes/manifest/base
7
+ ```
8
+
9
+ For gpu-enabled pod
10
+
11
+ ```bash
12
+ kubectl apply -k ./kubernetes/manifest
13
+ ```
14
+
15
+ ### Installing Both Ollama and Open WebUI Using Helm
16
+
17
+ Package Helm file first
18
+
19
+ ```bash
20
+ helm package ./kubernetes/helm/
21
+ ```
22
+
23
+ For cpu-only pod
24
+
25
+ ```bash
26
+ helm install ollama-webui ./ollama-webui-*.tgz
27
+ ```
28
+
29
+ For gpu-enabled pod
30
+
31
+ ```bash
32
+ helm install ollama-webui ./ollama-webui-*.tgz --set ollama.resources.limits.nvidia.com/gpu="1"
33
+ ```
34
+
35
+ Check the `kubernetes/helm/values.yaml` file to know which parameters are available for customization
LICENSE ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (c) 2023 Timothy Jaeryang Baek
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
Layerfile ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #This is an example webapp.io configuration for Docker!
2
+ FROM vm/ubuntu:18.04
3
+
4
+ # To note: Layerfiles create entire VMs, *not* containers!
5
+
6
+ # install the latest version of Docker, as in the official Docker installation tutorial.
7
+ RUN apt-get update && \
8
+ apt-get install ca-certificates curl gnupg lsb-release && \
9
+ sudo mkdir -p /etc/apt/keyrings && \
10
+ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg && \
11
+ echo \
12
+ "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" |\
13
+ sudo tee /etc/apt/sources.list.d/docker.list > /dev/null && \
14
+ apt-get update && \
15
+ apt-get install docker-ce docker-ce-cli containerd.io
16
+
17
+ # copy files from the repository into this staging server
18
+ COPY . .
19
+
20
+ RUN docker build -t image .
21
+ RUN docker run -d -p 3000:8080 -v ollama:/root/.ollama -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:ollama
22
+ EXPOSE WEBSITE http://localhost:3000
Makefile ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ifneq ($(shell which docker-compose 2>/dev/null),)
3
+ DOCKER_COMPOSE := docker-compose
4
+ else
5
+ DOCKER_COMPOSE := docker compose
6
+ endif
7
+
8
+ install:
9
+ $(DOCKER_COMPOSE) up -d
10
+
11
+ remove:
12
+ @chmod +x confirm_remove.sh
13
+ @./confirm_remove.sh
14
+
15
+ start:
16
+ $(DOCKER_COMPOSE) start
17
+ startAndBuild:
18
+ $(DOCKER_COMPOSE) up -d --build
19
+
20
+ stop:
21
+ $(DOCKER_COMPOSE) stop
22
+
23
+ update:
24
+ # Calls the LLM update script
25
+ chmod +x update_ollama_models.sh
26
+ @./update_ollama_models.sh
27
+ @git pull
28
+ $(DOCKER_COMPOSE) down
29
+ # Make sure the ollama-webui container is stopped before rebuilding
30
+ @docker stop open-webui || true
31
+ $(DOCKER_COMPOSE) up --build -d
32
+ $(DOCKER_COMPOSE) start
33
+
README.md ADDED
@@ -0,0 +1,231 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: Open WebUI
3
+ emoji: 🐳
4
+ colorFrom: purple
5
+ colorTo: gray
6
+ sdk: docker
7
+ app_port: 8080
8
+ ---
9
+ # Open WebUI 👋
10
+
11
+ ![GitHub stars](https://img.shields.io/github/stars/open-webui/open-webui?style=social)
12
+ ![GitHub forks](https://img.shields.io/github/forks/open-webui/open-webui?style=social)
13
+ ![GitHub watchers](https://img.shields.io/github/watchers/open-webui/open-webui?style=social)
14
+ ![GitHub repo size](https://img.shields.io/github/repo-size/open-webui/open-webui)
15
+ ![GitHub language count](https://img.shields.io/github/languages/count/open-webui/open-webui)
16
+ ![GitHub top language](https://img.shields.io/github/languages/top/open-webui/open-webui)
17
+ ![GitHub last commit](https://img.shields.io/github/last-commit/open-webui/open-webui?color=red)
18
+ ![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Follama-webui%2Follama-wbui&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=hits&edge_flat=false)
19
+ [![Discord](https://img.shields.io/badge/Discord-Open_WebUI-blue?logo=discord&logoColor=white)](https://discord.gg/5rJgQTnV4s)
20
+ [![](https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%A4&logo=GitHub&color=%23fe8e86)](https://github.com/sponsors/tjbck)
21
+
22
+ Open WebUI is an [extensible](https://github.com/open-webui/pipelines), feature-rich, and user-friendly self-hosted WebUI designed to operate entirely offline. It supports various LLM runners, including Ollama and OpenAI-compatible APIs. For more information, be sure to check out our [Open WebUI Documentation](https://docs.openwebui.com/).
23
+
24
+ ![Open WebUI Demo](./demo.gif)
25
+
26
+ ## Key Features of Open WebUI ⭐
27
+
28
+ - 🚀 **Effortless Setup**: Install seamlessly using Docker or Kubernetes (kubectl, kustomize or helm) for a hassle-free experience with support for both `:ollama` and `:cuda` tagged images.
29
+
30
+ - 🤝 **Ollama/OpenAI API Integration**: Effortlessly integrate OpenAI-compatible APIs for versatile conversations alongside Ollama models. Customize the OpenAI API URL to link with **LMStudio, GroqCloud, Mistral, OpenRouter, and more**.
31
+
32
+ - 🧩 **Pipelines, Open WebUI Plugin Support**: Seamlessly integrate custom logic and Python libraries into Open WebUI using [Pipelines Plugin Framework](https://github.com/open-webui/pipelines). Launch your Pipelines instance, set the OpenAI URL to the Pipelines URL, and explore endless possibilities. [Examples](https://github.com/open-webui/pipelines/tree/main/examples) include **Function Calling**, User **Rate Limiting** to control access, **Usage Monitoring** with tools like Langfuse, **Live Translation with LibreTranslate** for multilingual support, **Toxic Message Filtering** and much more.
33
+
34
+ - 📱 **Responsive Design**: Enjoy a seamless experience across Desktop PC, Laptop, and Mobile devices.
35
+
36
+ - 📱 **Progressive Web App (PWA) for Mobile**: Enjoy a native app-like experience on your mobile device with our PWA, providing offline access on localhost and a seamless user interface.
37
+
38
+ - ✒️🔢 **Full Markdown and LaTeX Support**: Elevate your LLM experience with comprehensive Markdown and LaTeX capabilities for enriched interaction.
39
+
40
+ - 🎤📹 **Hands-Free Voice/Video Call**: Experience seamless communication with integrated hands-free voice and video call features, allowing for a more dynamic and interactive chat environment.
41
+
42
+ - 🛠️ **Model Builder**: Easily create Ollama models via the Web UI. Create and add custom characters/agents, customize chat elements, and import models effortlessly through [Open WebUI Community](https://openwebui.com/) integration.
43
+
44
+ - 🐍 **Native Python Function Calling Tool**: Enhance your LLMs with built-in code editor support in the tools workspace. Bring Your Own Function (BYOF) by simply adding your pure Python functions, enabling seamless integration with LLMs.
45
+
46
+ - 📚 **Local RAG Integration**: Dive into the future of chat interactions with groundbreaking Retrieval Augmented Generation (RAG) support. This feature seamlessly integrates document interactions into your chat experience. You can load documents directly into the chat or add files to your document library, effortlessly accessing them using the `#` command before a query.
47
+
48
+ - 🔍 **Web Search for RAG**: Perform web searches using providers like `SearXNG`, `Google PSE`, `Brave Search`, `serpstack`, `serper`, `Serply`, `DuckDuckGo`, `TavilySearch` and `SearchApi` and inject the results directly into your chat experience.
49
+
50
+ - 🌐 **Web Browsing Capability**: Seamlessly integrate websites into your chat experience using the `#` command followed by a URL. This feature allows you to incorporate web content directly into your conversations, enhancing the richness and depth of your interactions.
51
+
52
+ - 🎨 **Image Generation Integration**: Seamlessly incorporate image generation capabilities using options such as AUTOMATIC1111 API or ComfyUI (local), and OpenAI's DALL-E (external), enriching your chat experience with dynamic visual content.
53
+
54
+ - ⚙️ **Many Models Conversations**: Effortlessly engage with various models simultaneously, harnessing their unique strengths for optimal responses. Enhance your experience by leveraging a diverse set of models in parallel.
55
+
56
+ - 🔐 **Role-Based Access Control (RBAC)**: Ensure secure access with restricted permissions; only authorized individuals can access your Ollama, and exclusive model creation/pulling rights are reserved for administrators.
57
+
58
+ - 🌐🌍 **Multilingual Support**: Experience Open WebUI in your preferred language with our internationalization (i18n) support. Join us in expanding our supported languages! We're actively seeking contributors!
59
+
60
+ - 🌟 **Continuous Updates**: We are committed to improving Open WebUI with regular updates, fixes, and new features.
61
+
62
+ Want to learn more about Open WebUI's features? Check out our [Open WebUI documentation](https://docs.openwebui.com/features) for a comprehensive overview!
63
+
64
+ ## 🔗 Also Check Out Open WebUI Community!
65
+
66
+ Don't forget to explore our sibling project, [Open WebUI Community](https://openwebui.com/), where you can discover, download, and explore customized Modelfiles. Open WebUI Community offers a wide range of exciting possibilities for enhancing your chat interactions with Open WebUI! 🚀
67
+
68
+ ## How to Install 🚀
69
+
70
+ ### Installation via Python pip 🐍
71
+
72
+ Open WebUI can be installed using pip, the Python package installer. Before proceeding, ensure you're using **Python 3.11** to avoid compatibility issues.
73
+
74
+ 1. **Install Open WebUI**:
75
+ Open your terminal and run the following command to install Open WebUI:
76
+
77
+ ```bash
78
+ pip install open-webui
79
+ ```
80
+
81
+ 2. **Running Open WebUI**:
82
+ After installation, you can start Open WebUI by executing:
83
+
84
+ ```bash
85
+ open-webui serve
86
+ ```
87
+
88
+ This will start the Open WebUI server, which you can access at [http://localhost:8080](http://localhost:8080)
89
+
90
+ ### Quick Start with Docker 🐳
91
+
92
+ > [!NOTE]
93
+ > Please note that for certain Docker environments, additional configurations might be needed. If you encounter any connection issues, our detailed guide on [Open WebUI Documentation](https://docs.openwebui.com/) is ready to assist you.
94
+
95
+ > [!WARNING]
96
+ > When using Docker to install Open WebUI, make sure to include the `-v open-webui:/app/backend/data` in your Docker command. This step is crucial as it ensures your database is properly mounted and prevents any loss of data.
97
+
98
+ > [!TIP]
99
+ > If you wish to utilize Open WebUI with Ollama included or CUDA acceleration, we recommend utilizing our official images tagged with either `:cuda` or `:ollama`. To enable CUDA, you must install the [Nvidia CUDA container toolkit](https://docs.nvidia.com/dgx/nvidia-container-runtime-upgrade/) on your Linux/WSL system.
100
+
101
+ ### Installation with Default Configuration
102
+
103
+ - **If Ollama is on your computer**, use this command:
104
+
105
+ ```bash
106
+ docker run -d -p 3000:8080 --add-host=host.docker.internal:host-gateway -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:main
107
+ ```
108
+
109
+ - **If Ollama is on a Different Server**, use this command:
110
+
111
+ To connect to Ollama on another server, change the `OLLAMA_BASE_URL` to the server's URL:
112
+
113
+ ```bash
114
+ docker run -d -p 3000:8080 -e OLLAMA_BASE_URL=https://example.com -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:main
115
+ ```
116
+
117
+ - **To run Open WebUI with Nvidia GPU support**, use this command:
118
+
119
+ ```bash
120
+ docker run -d -p 3000:8080 --gpus all --add-host=host.docker.internal:host-gateway -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:cuda
121
+ ```
122
+
123
+ ### Installation for OpenAI API Usage Only
124
+
125
+ - **If you're only using OpenAI API**, use this command:
126
+
127
+ ```bash
128
+ docker run -d -p 3000:8080 -e OPENAI_API_KEY=your_secret_key -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:main
129
+ ```
130
+
131
+ ### Installing Open WebUI with Bundled Ollama Support
132
+
133
+ This installation method uses a single container image that bundles Open WebUI with Ollama, allowing for a streamlined setup via a single command. Choose the appropriate command based on your hardware setup:
134
+
135
+ - **With GPU Support**:
136
+ Utilize GPU resources by running the following command:
137
+
138
+ ```bash
139
+ docker run -d -p 3000:8080 --gpus=all -v ollama:/root/.ollama -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:ollama
140
+ ```
141
+
142
+ - **For CPU Only**:
143
+ If you're not using a GPU, use this command instead:
144
+
145
+ ```bash
146
+ docker run -d -p 3000:8080 -v ollama:/root/.ollama -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:ollama
147
+ ```
148
+
149
+ Both commands facilitate a built-in, hassle-free installation of both Open WebUI and Ollama, ensuring that you can get everything up and running swiftly.
150
+
151
+ After installation, you can access Open WebUI at [http://localhost:3000](http://localhost:3000). Enjoy! 😄
152
+
153
+ ### Other Installation Methods
154
+
155
+ We offer various installation alternatives, including non-Docker native installation methods, Docker Compose, Kustomize, and Helm. Visit our [Open WebUI Documentation](https://docs.openwebui.com/getting-started/) or join our [Discord community](https://discord.gg/5rJgQTnV4s) for comprehensive guidance.
156
+
157
+ ### Troubleshooting
158
+
159
+ Encountering connection issues? Our [Open WebUI Documentation](https://docs.openwebui.com/troubleshooting/) has got you covered. For further assistance and to join our vibrant community, visit the [Open WebUI Discord](https://discord.gg/5rJgQTnV4s).
160
+
161
+ #### Open WebUI: Server Connection Error
162
+
163
+ If you're experiencing connection issues, it’s often due to the WebUI docker container not being able to reach the Ollama server at 127.0.0.1:11434 (host.docker.internal:11434) inside the container . Use the `--network=host` flag in your docker command to resolve this. Note that the port changes from 3000 to 8080, resulting in the link: `http://localhost:8080`.
164
+
165
+ **Example Docker Command**:
166
+
167
+ ```bash
168
+ docker run -d --network=host -v open-webui:/app/backend/data -e OLLAMA_BASE_URL=http://127.0.0.1:11434 --name open-webui --restart always ghcr.io/open-webui/open-webui:main
169
+ ```
170
+
171
+ ### Keeping Your Docker Installation Up-to-Date
172
+
173
+ In case you want to update your local Docker installation to the latest version, you can do it with [Watchtower](https://containrrr.dev/watchtower/):
174
+
175
+ ```bash
176
+ docker run --rm --volume /var/run/docker.sock:/var/run/docker.sock containrrr/watchtower --run-once open-webui
177
+ ```
178
+
179
+ In the last part of the command, replace `open-webui` with your container name if it is different.
180
+
181
+ Check our Migration Guide available in our [Open WebUI Documentation](https://docs.openwebui.com/tutorials/migration/).
182
+
183
+ ### Using the Dev Branch 🌙
184
+
185
+ > [!WARNING]
186
+ > The `:dev` branch contains the latest unstable features and changes. Use it at your own risk as it may have bugs or incomplete features.
187
+
188
+ If you want to try out the latest bleeding-edge features and are okay with occasional instability, you can use the `:dev` tag like this:
189
+
190
+ ```bash
191
+ docker run -d -p 3000:8080 -v open-webui:/app/backend/data --name open-webui --add-host=host.docker.internal:host-gateway --restart always ghcr.io/open-webui/open-webui:dev
192
+ ```
193
+
194
+ ## What's Next? 🌟
195
+
196
+ Discover upcoming features on our roadmap in the [Open WebUI Documentation](https://docs.openwebui.com/roadmap/).
197
+
198
+ ## Supporters ✨
199
+
200
+ A big shoutout to our amazing supporters who's helping to make this project possible! 🙏
201
+
202
+ ### Platinum Sponsors 🤍
203
+
204
+ - We're looking for Sponsors!
205
+
206
+ ### Acknowledgments
207
+
208
+ Special thanks to [Prof. Lawrence Kim](https://www.lhkim.com/) and [Prof. Nick Vincent](https://www.nickmvincent.com/) for their invaluable support and guidance in shaping this project into a research endeavor. Grateful for your mentorship throughout the journey! 🙌
209
+
210
+ ## License 📜
211
+
212
+ This project is licensed under the [MIT License](LICENSE) - see the [LICENSE](LICENSE) file for details. 📄
213
+
214
+ ## Support 💬
215
+
216
+ If you have any questions, suggestions, or need assistance, please open an issue or join our
217
+ [Open WebUI Discord community](https://discord.gg/5rJgQTnV4s) to connect with us! 🤝
218
+
219
+ ## Star History
220
+
221
+ <a href="https://star-history.com/#open-webui/open-webui&Date">
222
+ <picture>
223
+ <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=open-webui/open-webui&type=Date&theme=dark" />
224
+ <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=open-webui/open-webui&type=Date" />
225
+ <img alt="Star History Chart" src="https://api.star-history.com/svg?repos=open-webui/open-webui&type=Date" />
226
+ </picture>
227
+ </a>
228
+
229
+ ---
230
+
231
+ Created by [Timothy Jaeryang Baek](https://github.com/tjbck) - Let's make Open WebUI even more amazing together! 💪
TROUBLESHOOTING.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Open WebUI Troubleshooting Guide
2
+
3
+ ## Understanding the Open WebUI Architecture
4
+
5
+ The Open WebUI system is designed to streamline interactions between the client (your browser) and the Ollama API. At the heart of this design is a backend reverse proxy, enhancing security and resolving CORS issues.
6
+
7
+ - **How it Works**: The Open WebUI is designed to interact with the Ollama API through a specific route. When a request is made from the WebUI to Ollama, it is not directly sent to the Ollama API. Initially, the request is sent to the Open WebUI backend via `/ollama` route. From there, the backend is responsible for forwarding the request to the Ollama API. This forwarding is accomplished by using the route specified in the `OLLAMA_BASE_URL` environment variable. Therefore, a request made to `/ollama` in the WebUI is effectively the same as making a request to `OLLAMA_BASE_URL` in the backend. For instance, a request to `/ollama/api/tags` in the WebUI is equivalent to `OLLAMA_BASE_URL/api/tags` in the backend.
8
+
9
+ - **Security Benefits**: This design prevents direct exposure of the Ollama API to the frontend, safeguarding against potential CORS (Cross-Origin Resource Sharing) issues and unauthorized access. Requiring authentication to access the Ollama API further enhances this security layer.
10
+
11
+ ## Open WebUI: Server Connection Error
12
+
13
+ If you're experiencing connection issues, it’s often due to the WebUI docker container not being able to reach the Ollama server at 127.0.0.1:11434 (host.docker.internal:11434) inside the container . Use the `--network=host` flag in your docker command to resolve this. Note that the port changes from 3000 to 8080, resulting in the link: `http://localhost:8080`.
14
+
15
+ **Example Docker Command**:
16
+
17
+ ```bash
18
+ docker run -d --network=host -v open-webui:/app/backend/data -e OLLAMA_BASE_URL=http://127.0.0.1:11434 --name open-webui --restart always ghcr.io/open-webui/open-webui:main
19
+ ```
20
+
21
+ ### Error on Slow Reponses for Ollama
22
+
23
+ Open WebUI has a default timeout of 5 minutes for Ollama to finish generating the response. If needed, this can be adjusted via the environment variable AIOHTTP_CLIENT_TIMEOUT, which sets the timeout in seconds.
24
+
25
+ ### General Connection Errors
26
+
27
+ **Ensure Ollama Version is Up-to-Date**: Always start by checking that you have the latest version of Ollama. Visit [Ollama's official site](https://ollama.com/) for the latest updates.
28
+
29
+ **Troubleshooting Steps**:
30
+
31
+ 1. **Verify Ollama URL Format**:
32
+ - When running the Web UI container, ensure the `OLLAMA_BASE_URL` is correctly set. (e.g., `http://192.168.1.1:11434` for different host setups).
33
+ - In the Open WebUI, navigate to "Settings" > "General".
34
+ - Confirm that the Ollama Server URL is correctly set to `[OLLAMA URL]` (e.g., `http://localhost:11434`).
35
+
36
+ By following these enhanced troubleshooting steps, connection issues should be effectively resolved. For further assistance or queries, feel free to reach out to us on our community Discord.
backend/.dockerignore ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ __pycache__
2
+ .env
3
+ _old
4
+ uploads
5
+ .ipynb_checkpoints
6
+ *.db
7
+ _test
8
+ !/data
9
+ /data/*
10
+ !/data/litellm
11
+ /data/litellm/*
12
+ !data/litellm/config.yaml
13
+
14
+ !data/config.json
backend/.gitignore ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ __pycache__
2
+ .env
3
+ _old
4
+ uploads
5
+ .ipynb_checkpoints
6
+ *.db
7
+ _test
8
+ Pipfile
9
+ !/data
10
+ /data/*
11
+ /open_webui/data/*
12
+ .webui_secret_key
backend/dev.sh ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ PORT="${PORT:-8080}"
2
+ uvicorn open_webui.main:app --port $PORT --host 0.0.0.0 --forwarded-allow-ips '*' --reload
backend/open_webui/__init__.py ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import base64
2
+ import os
3
+ import random
4
+ from pathlib import Path
5
+
6
+ import typer
7
+ import uvicorn
8
+
9
+ app = typer.Typer()
10
+
11
+ KEY_FILE = Path.cwd() / ".webui_secret_key"
12
+
13
+
14
+ @app.command()
15
+ def serve(
16
+ host: str = "0.0.0.0",
17
+ port: int = 8080,
18
+ ):
19
+ os.environ["FROM_INIT_PY"] = "true"
20
+ if os.getenv("WEBUI_SECRET_KEY") is None:
21
+ typer.echo(
22
+ "Loading WEBUI_SECRET_KEY from file, not provided as an environment variable."
23
+ )
24
+ if not KEY_FILE.exists():
25
+ typer.echo(f"Generating a new secret key and saving it to {KEY_FILE}")
26
+ KEY_FILE.write_bytes(base64.b64encode(random.randbytes(12)))
27
+ typer.echo(f"Loading WEBUI_SECRET_KEY from {KEY_FILE}")
28
+ os.environ["WEBUI_SECRET_KEY"] = KEY_FILE.read_text()
29
+
30
+ if os.getenv("USE_CUDA_DOCKER", "false") == "true":
31
+ typer.echo(
32
+ "CUDA is enabled, appending LD_LIBRARY_PATH to include torch/cudnn & cublas libraries."
33
+ )
34
+ LD_LIBRARY_PATH = os.getenv("LD_LIBRARY_PATH", "").split(":")
35
+ os.environ["LD_LIBRARY_PATH"] = ":".join(
36
+ LD_LIBRARY_PATH
37
+ + [
38
+ "/usr/local/lib/python3.11/site-packages/torch/lib",
39
+ "/usr/local/lib/python3.11/site-packages/nvidia/cudnn/lib",
40
+ ]
41
+ )
42
+ try:
43
+ import torch
44
+
45
+ assert torch.cuda.is_available(), "CUDA not available"
46
+ typer.echo("CUDA seems to be working")
47
+ except Exception as e:
48
+ typer.echo(
49
+ "Error when testing CUDA but USE_CUDA_DOCKER is true. "
50
+ "Resetting USE_CUDA_DOCKER to false and removing "
51
+ f"LD_LIBRARY_PATH modifications: {e}"
52
+ )
53
+ os.environ["USE_CUDA_DOCKER"] = "false"
54
+ os.environ["LD_LIBRARY_PATH"] = ":".join(LD_LIBRARY_PATH)
55
+
56
+ import open_webui.main # we need set environment variables before importing main
57
+
58
+ uvicorn.run(open_webui.main.app, host=host, port=port, forwarded_allow_ips="*")
59
+
60
+
61
+ @app.command()
62
+ def dev(
63
+ host: str = "0.0.0.0",
64
+ port: int = 8080,
65
+ reload: bool = True,
66
+ ):
67
+ uvicorn.run(
68
+ "open_webui.main:app",
69
+ host=host,
70
+ port=port,
71
+ reload=reload,
72
+ forwarded_allow_ips="*",
73
+ )
74
+
75
+
76
+ if __name__ == "__main__":
77
+ app()
backend/open_webui/alembic.ini ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # A generic, single database configuration.
2
+
3
+ [alembic]
4
+ # path to migration scripts
5
+ script_location = migrations
6
+
7
+ # template used to generate migration file names; The default value is %%(rev)s_%%(slug)s
8
+ # Uncomment the line below if you want the files to be prepended with date and time
9
+ # file_template = %%(year)d_%%(month).2d_%%(day).2d_%%(hour).2d%%(minute).2d-%%(rev)s_%%(slug)s
10
+
11
+ # sys.path path, will be prepended to sys.path if present.
12
+ # defaults to the current working directory.
13
+ prepend_sys_path = .
14
+
15
+ # timezone to use when rendering the date within the migration file
16
+ # as well as the filename.
17
+ # If specified, requires the python>=3.9 or backports.zoneinfo library.
18
+ # Any required deps can installed by adding `alembic[tz]` to the pip requirements
19
+ # string value is passed to ZoneInfo()
20
+ # leave blank for localtime
21
+ # timezone =
22
+
23
+ # max length of characters to apply to the
24
+ # "slug" field
25
+ # truncate_slug_length = 40
26
+
27
+ # set to 'true' to run the environment during
28
+ # the 'revision' command, regardless of autogenerate
29
+ # revision_environment = false
30
+
31
+ # set to 'true' to allow .pyc and .pyo files without
32
+ # a source .py file to be detected as revisions in the
33
+ # versions/ directory
34
+ # sourceless = false
35
+
36
+ # version location specification; This defaults
37
+ # to migrations/versions. When using multiple version
38
+ # directories, initial revisions must be specified with --version-path.
39
+ # The path separator used here should be the separator specified by "version_path_separator" below.
40
+ # version_locations = %(here)s/bar:%(here)s/bat:migrations/versions
41
+
42
+ # version path separator; As mentioned above, this is the character used to split
43
+ # version_locations. The default within new alembic.ini files is "os", which uses os.pathsep.
44
+ # If this key is omitted entirely, it falls back to the legacy behavior of splitting on spaces and/or commas.
45
+ # Valid values for version_path_separator are:
46
+ #
47
+ # version_path_separator = :
48
+ # version_path_separator = ;
49
+ # version_path_separator = space
50
+ version_path_separator = os # Use os.pathsep. Default configuration used for new projects.
51
+
52
+ # set to 'true' to search source files recursively
53
+ # in each "version_locations" directory
54
+ # new in Alembic version 1.10
55
+ # recursive_version_locations = false
56
+
57
+ # the output encoding used when revision files
58
+ # are written from script.py.mako
59
+ # output_encoding = utf-8
60
+
61
+ # sqlalchemy.url = REPLACE_WITH_DATABASE_URL
62
+
63
+
64
+ [post_write_hooks]
65
+ # post_write_hooks defines scripts or Python functions that are run
66
+ # on newly generated revision scripts. See the documentation for further
67
+ # detail and examples
68
+
69
+ # format using "black" - use the console_scripts runner, against the "black" entrypoint
70
+ # hooks = black
71
+ # black.type = console_scripts
72
+ # black.entrypoint = black
73
+ # black.options = -l 79 REVISION_SCRIPT_FILENAME
74
+
75
+ # lint with attempts to fix using "ruff" - use the exec runner, execute a binary
76
+ # hooks = ruff
77
+ # ruff.type = exec
78
+ # ruff.executable = %(here)s/.venv/bin/ruff
79
+ # ruff.options = --fix REVISION_SCRIPT_FILENAME
80
+
81
+ # Logging configuration
82
+ [loggers]
83
+ keys = root,sqlalchemy,alembic
84
+
85
+ [handlers]
86
+ keys = console
87
+
88
+ [formatters]
89
+ keys = generic
90
+
91
+ [logger_root]
92
+ level = WARN
93
+ handlers = console
94
+ qualname =
95
+
96
+ [logger_sqlalchemy]
97
+ level = WARN
98
+ handlers =
99
+ qualname = sqlalchemy.engine
100
+
101
+ [logger_alembic]
102
+ level = INFO
103
+ handlers =
104
+ qualname = alembic
105
+
106
+ [handler_console]
107
+ class = StreamHandler
108
+ args = (sys.stderr,)
109
+ level = NOTSET
110
+ formatter = generic
111
+
112
+ [formatter_generic]
113
+ format = %(levelname)-5.5s [%(name)s] %(message)s
114
+ datefmt = %H:%M:%S
backend/open_webui/apps/audio/main.py ADDED
@@ -0,0 +1,624 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import hashlib
2
+ import json
3
+ import logging
4
+ import os
5
+ import uuid
6
+ from functools import lru_cache
7
+ from pathlib import Path
8
+ from pydub import AudioSegment
9
+ from pydub.silence import split_on_silence
10
+
11
+ import requests
12
+ from open_webui.config import (
13
+ AUDIO_STT_ENGINE,
14
+ AUDIO_STT_MODEL,
15
+ AUDIO_STT_OPENAI_API_BASE_URL,
16
+ AUDIO_STT_OPENAI_API_KEY,
17
+ AUDIO_TTS_API_KEY,
18
+ AUDIO_TTS_ENGINE,
19
+ AUDIO_TTS_MODEL,
20
+ AUDIO_TTS_OPENAI_API_BASE_URL,
21
+ AUDIO_TTS_OPENAI_API_KEY,
22
+ AUDIO_TTS_SPLIT_ON,
23
+ AUDIO_TTS_VOICE,
24
+ AUDIO_TTS_AZURE_SPEECH_REGION,
25
+ AUDIO_TTS_AZURE_SPEECH_OUTPUT_FORMAT,
26
+ CACHE_DIR,
27
+ CORS_ALLOW_ORIGIN,
28
+ WHISPER_MODEL,
29
+ WHISPER_MODEL_AUTO_UPDATE,
30
+ WHISPER_MODEL_DIR,
31
+ AppConfig,
32
+ )
33
+
34
+ from open_webui.constants import ERROR_MESSAGES
35
+ from open_webui.env import SRC_LOG_LEVELS, DEVICE_TYPE
36
+ from fastapi import Depends, FastAPI, File, HTTPException, Request, UploadFile, status
37
+ from fastapi.middleware.cors import CORSMiddleware
38
+ from fastapi.responses import FileResponse
39
+ from pydantic import BaseModel
40
+ from open_webui.utils.utils import get_admin_user, get_verified_user
41
+
42
+ # Constants
43
+ MAX_FILE_SIZE_MB = 25
44
+ MAX_FILE_SIZE = MAX_FILE_SIZE_MB * 1024 * 1024 # Convert MB to bytes
45
+
46
+
47
+ log = logging.getLogger(__name__)
48
+ log.setLevel(SRC_LOG_LEVELS["AUDIO"])
49
+
50
+ app = FastAPI()
51
+ app.add_middleware(
52
+ CORSMiddleware,
53
+ allow_origins=CORS_ALLOW_ORIGIN,
54
+ allow_credentials=True,
55
+ allow_methods=["*"],
56
+ allow_headers=["*"],
57
+ )
58
+
59
+ app.state.config = AppConfig()
60
+
61
+ app.state.config.STT_OPENAI_API_BASE_URL = AUDIO_STT_OPENAI_API_BASE_URL
62
+ app.state.config.STT_OPENAI_API_KEY = AUDIO_STT_OPENAI_API_KEY
63
+ app.state.config.STT_ENGINE = AUDIO_STT_ENGINE
64
+ app.state.config.STT_MODEL = AUDIO_STT_MODEL
65
+
66
+ app.state.config.TTS_OPENAI_API_BASE_URL = AUDIO_TTS_OPENAI_API_BASE_URL
67
+ app.state.config.TTS_OPENAI_API_KEY = AUDIO_TTS_OPENAI_API_KEY
68
+ app.state.config.TTS_ENGINE = AUDIO_TTS_ENGINE
69
+ app.state.config.TTS_MODEL = AUDIO_TTS_MODEL
70
+ app.state.config.TTS_VOICE = AUDIO_TTS_VOICE
71
+ app.state.config.TTS_API_KEY = AUDIO_TTS_API_KEY
72
+ app.state.config.TTS_SPLIT_ON = AUDIO_TTS_SPLIT_ON
73
+
74
+ app.state.config.TTS_AZURE_SPEECH_REGION = AUDIO_TTS_AZURE_SPEECH_REGION
75
+ app.state.config.TTS_AZURE_SPEECH_OUTPUT_FORMAT = AUDIO_TTS_AZURE_SPEECH_OUTPUT_FORMAT
76
+
77
+ # setting device type for whisper model
78
+ whisper_device_type = DEVICE_TYPE if DEVICE_TYPE and DEVICE_TYPE == "cuda" else "cpu"
79
+ log.info(f"whisper_device_type: {whisper_device_type}")
80
+
81
+ SPEECH_CACHE_DIR = Path(CACHE_DIR).joinpath("./audio/speech/")
82
+ SPEECH_CACHE_DIR.mkdir(parents=True, exist_ok=True)
83
+
84
+
85
+ class TTSConfigForm(BaseModel):
86
+ OPENAI_API_BASE_URL: str
87
+ OPENAI_API_KEY: str
88
+ API_KEY: str
89
+ ENGINE: str
90
+ MODEL: str
91
+ VOICE: str
92
+ SPLIT_ON: str
93
+ AZURE_SPEECH_REGION: str
94
+ AZURE_SPEECH_OUTPUT_FORMAT: str
95
+
96
+
97
+ class STTConfigForm(BaseModel):
98
+ OPENAI_API_BASE_URL: str
99
+ OPENAI_API_KEY: str
100
+ ENGINE: str
101
+ MODEL: str
102
+
103
+
104
+ class AudioConfigUpdateForm(BaseModel):
105
+ tts: TTSConfigForm
106
+ stt: STTConfigForm
107
+
108
+
109
+ from pydub import AudioSegment
110
+ from pydub.utils import mediainfo
111
+
112
+
113
+ def is_mp4_audio(file_path):
114
+ """Check if the given file is an MP4 audio file."""
115
+ if not os.path.isfile(file_path):
116
+ print(f"File not found: {file_path}")
117
+ return False
118
+
119
+ info = mediainfo(file_path)
120
+ if (
121
+ info.get("codec_name") == "aac"
122
+ and info.get("codec_type") == "audio"
123
+ and info.get("codec_tag_string") == "mp4a"
124
+ ):
125
+ return True
126
+ return False
127
+
128
+
129
+ def convert_mp4_to_wav(file_path, output_path):
130
+ """Convert MP4 audio file to WAV format."""
131
+ audio = AudioSegment.from_file(file_path, format="mp4")
132
+ audio.export(output_path, format="wav")
133
+ print(f"Converted {file_path} to {output_path}")
134
+
135
+
136
+ @app.get("/config")
137
+ async def get_audio_config(user=Depends(get_admin_user)):
138
+ return {
139
+ "tts": {
140
+ "OPENAI_API_BASE_URL": app.state.config.TTS_OPENAI_API_BASE_URL,
141
+ "OPENAI_API_KEY": app.state.config.TTS_OPENAI_API_KEY,
142
+ "API_KEY": app.state.config.TTS_API_KEY,
143
+ "ENGINE": app.state.config.TTS_ENGINE,
144
+ "MODEL": app.state.config.TTS_MODEL,
145
+ "VOICE": app.state.config.TTS_VOICE,
146
+ "SPLIT_ON": app.state.config.TTS_SPLIT_ON,
147
+ "AZURE_SPEECH_REGION": app.state.config.TTS_AZURE_SPEECH_REGION,
148
+ "AZURE_SPEECH_OUTPUT_FORMAT": app.state.config.TTS_AZURE_SPEECH_OUTPUT_FORMAT,
149
+ },
150
+ "stt": {
151
+ "OPENAI_API_BASE_URL": app.state.config.STT_OPENAI_API_BASE_URL,
152
+ "OPENAI_API_KEY": app.state.config.STT_OPENAI_API_KEY,
153
+ "ENGINE": app.state.config.STT_ENGINE,
154
+ "MODEL": app.state.config.STT_MODEL,
155
+ },
156
+ }
157
+
158
+
159
+ @app.post("/config/update")
160
+ async def update_audio_config(
161
+ form_data: AudioConfigUpdateForm, user=Depends(get_admin_user)
162
+ ):
163
+ app.state.config.TTS_OPENAI_API_BASE_URL = form_data.tts.OPENAI_API_BASE_URL
164
+ app.state.config.TTS_OPENAI_API_KEY = form_data.tts.OPENAI_API_KEY
165
+ app.state.config.TTS_API_KEY = form_data.tts.API_KEY
166
+ app.state.config.TTS_ENGINE = form_data.tts.ENGINE
167
+ app.state.config.TTS_MODEL = form_data.tts.MODEL
168
+ app.state.config.TTS_VOICE = form_data.tts.VOICE
169
+ app.state.config.TTS_SPLIT_ON = form_data.tts.SPLIT_ON
170
+ app.state.config.TTS_AZURE_SPEECH_REGION = form_data.tts.AZURE_SPEECH_REGION
171
+ app.state.config.TTS_AZURE_SPEECH_OUTPUT_FORMAT = (
172
+ form_data.tts.AZURE_SPEECH_OUTPUT_FORMAT
173
+ )
174
+
175
+ app.state.config.STT_OPENAI_API_BASE_URL = form_data.stt.OPENAI_API_BASE_URL
176
+ app.state.config.STT_OPENAI_API_KEY = form_data.stt.OPENAI_API_KEY
177
+ app.state.config.STT_ENGINE = form_data.stt.ENGINE
178
+ app.state.config.STT_MODEL = form_data.stt.MODEL
179
+
180
+ return {
181
+ "tts": {
182
+ "OPENAI_API_BASE_URL": app.state.config.TTS_OPENAI_API_BASE_URL,
183
+ "OPENAI_API_KEY": app.state.config.TTS_OPENAI_API_KEY,
184
+ "API_KEY": app.state.config.TTS_API_KEY,
185
+ "ENGINE": app.state.config.TTS_ENGINE,
186
+ "MODEL": app.state.config.TTS_MODEL,
187
+ "VOICE": app.state.config.TTS_VOICE,
188
+ "SPLIT_ON": app.state.config.TTS_SPLIT_ON,
189
+ "AZURE_SPEECH_REGION": app.state.config.TTS_AZURE_SPEECH_REGION,
190
+ "AZURE_SPEECH_OUTPUT_FORMAT": app.state.config.TTS_AZURE_SPEECH_OUTPUT_FORMAT,
191
+ },
192
+ "stt": {
193
+ "OPENAI_API_BASE_URL": app.state.config.STT_OPENAI_API_BASE_URL,
194
+ "OPENAI_API_KEY": app.state.config.STT_OPENAI_API_KEY,
195
+ "ENGINE": app.state.config.STT_ENGINE,
196
+ "MODEL": app.state.config.STT_MODEL,
197
+ },
198
+ }
199
+
200
+
201
+ @app.post("/speech")
202
+ async def speech(request: Request, user=Depends(get_verified_user)):
203
+ body = await request.body()
204
+ name = hashlib.sha256(body).hexdigest()
205
+
206
+ file_path = SPEECH_CACHE_DIR.joinpath(f"{name}.mp3")
207
+ file_body_path = SPEECH_CACHE_DIR.joinpath(f"{name}.json")
208
+
209
+ # Check if the file already exists in the cache
210
+ if file_path.is_file():
211
+ return FileResponse(file_path)
212
+
213
+ if app.state.config.TTS_ENGINE == "openai":
214
+ headers = {}
215
+ headers["Authorization"] = f"Bearer {app.state.config.TTS_OPENAI_API_KEY}"
216
+ headers["Content-Type"] = "application/json"
217
+
218
+ try:
219
+ body = body.decode("utf-8")
220
+ body = json.loads(body)
221
+ body["model"] = app.state.config.TTS_MODEL
222
+ body = json.dumps(body).encode("utf-8")
223
+ except Exception:
224
+ pass
225
+
226
+ r = None
227
+ try:
228
+ r = requests.post(
229
+ url=f"{app.state.config.TTS_OPENAI_API_BASE_URL}/audio/speech",
230
+ data=body,
231
+ headers=headers,
232
+ stream=True,
233
+ )
234
+
235
+ r.raise_for_status()
236
+
237
+ # Save the streaming content to a file
238
+ with open(file_path, "wb") as f:
239
+ for chunk in r.iter_content(chunk_size=8192):
240
+ f.write(chunk)
241
+
242
+ with open(file_body_path, "w") as f:
243
+ json.dump(json.loads(body.decode("utf-8")), f)
244
+
245
+ # Return the saved file
246
+ return FileResponse(file_path)
247
+
248
+ except Exception as e:
249
+ log.exception(e)
250
+ error_detail = "Open WebUI: Server Connection Error"
251
+ if r is not None:
252
+ try:
253
+ res = r.json()
254
+ if "error" in res:
255
+ error_detail = f"External: {res['error']['message']}"
256
+ except Exception:
257
+ error_detail = f"External: {e}"
258
+
259
+ raise HTTPException(
260
+ status_code=r.status_code if r != None else 500,
261
+ detail=error_detail,
262
+ )
263
+
264
+ elif app.state.config.TTS_ENGINE == "elevenlabs":
265
+ payload = None
266
+ try:
267
+ payload = json.loads(body.decode("utf-8"))
268
+ except Exception as e:
269
+ log.exception(e)
270
+ raise HTTPException(status_code=400, detail="Invalid JSON payload")
271
+
272
+ voice_id = payload.get("voice", "")
273
+
274
+ if voice_id not in get_available_voices():
275
+ raise HTTPException(
276
+ status_code=400,
277
+ detail="Invalid voice id",
278
+ )
279
+
280
+ url = f"https://api.elevenlabs.io/v1/text-to-speech/{voice_id}"
281
+
282
+ headers = {
283
+ "Accept": "audio/mpeg",
284
+ "Content-Type": "application/json",
285
+ "xi-api-key": app.state.config.TTS_API_KEY,
286
+ }
287
+
288
+ data = {
289
+ "text": payload["input"],
290
+ "model_id": app.state.config.TTS_MODEL,
291
+ "voice_settings": {"stability": 0.5, "similarity_boost": 0.5},
292
+ }
293
+
294
+ try:
295
+ r = requests.post(url, json=data, headers=headers)
296
+
297
+ r.raise_for_status()
298
+
299
+ # Save the streaming content to a file
300
+ with open(file_path, "wb") as f:
301
+ for chunk in r.iter_content(chunk_size=8192):
302
+ f.write(chunk)
303
+
304
+ with open(file_body_path, "w") as f:
305
+ json.dump(json.loads(body.decode("utf-8")), f)
306
+
307
+ # Return the saved file
308
+ return FileResponse(file_path)
309
+
310
+ except Exception as e:
311
+ log.exception(e)
312
+ error_detail = "Open WebUI: Server Connection Error"
313
+ if r is not None:
314
+ try:
315
+ res = r.json()
316
+ if "error" in res:
317
+ error_detail = f"External: {res['error']['message']}"
318
+ except Exception:
319
+ error_detail = f"External: {e}"
320
+
321
+ raise HTTPException(
322
+ status_code=r.status_code if r != None else 500,
323
+ detail=error_detail,
324
+ )
325
+
326
+ elif app.state.config.TTS_ENGINE == "azure":
327
+ payload = None
328
+ try:
329
+ payload = json.loads(body.decode("utf-8"))
330
+ except Exception as e:
331
+ log.exception(e)
332
+ raise HTTPException(status_code=400, detail="Invalid JSON payload")
333
+
334
+ region = app.state.config.TTS_AZURE_SPEECH_REGION
335
+ language = app.state.config.TTS_VOICE
336
+ locale = "-".join(app.state.config.TTS_VOICE.split("-")[:1])
337
+ output_format = app.state.config.TTS_AZURE_SPEECH_OUTPUT_FORMAT
338
+ url = f"https://{region}.tts.speech.microsoft.com/cognitiveservices/v1"
339
+
340
+ headers = {
341
+ "Ocp-Apim-Subscription-Key": app.state.config.TTS_API_KEY,
342
+ "Content-Type": "application/ssml+xml",
343
+ "X-Microsoft-OutputFormat": output_format,
344
+ }
345
+
346
+ data = f"""<speak version="1.0" xmlns="http://www.w3.org/2001/10/synthesis" xml:lang="{locale}">
347
+ <voice name="{language}">{payload["input"]}</voice>
348
+ </speak>"""
349
+
350
+ response = requests.post(url, headers=headers, data=data)
351
+
352
+ if response.status_code == 200:
353
+ with open(file_path, "wb") as f:
354
+ f.write(response.content)
355
+ return FileResponse(file_path)
356
+ else:
357
+ log.error(f"Error synthesizing speech - {response.reason}")
358
+ raise HTTPException(
359
+ status_code=500, detail=f"Error synthesizing speech - {response.reason}"
360
+ )
361
+
362
+
363
+ def transcribe(file_path):
364
+ print("transcribe", file_path)
365
+ filename = os.path.basename(file_path)
366
+ file_dir = os.path.dirname(file_path)
367
+ id = filename.split(".")[0]
368
+
369
+ if app.state.config.STT_ENGINE == "":
370
+ from faster_whisper import WhisperModel
371
+
372
+ whisper_kwargs = {
373
+ "model_size_or_path": WHISPER_MODEL,
374
+ "device": whisper_device_type,
375
+ "compute_type": "int8",
376
+ "download_root": WHISPER_MODEL_DIR,
377
+ "local_files_only": not WHISPER_MODEL_AUTO_UPDATE,
378
+ }
379
+
380
+ log.debug(f"whisper_kwargs: {whisper_kwargs}")
381
+
382
+ try:
383
+ model = WhisperModel(**whisper_kwargs)
384
+ except Exception:
385
+ log.warning(
386
+ "WhisperModel initialization failed, attempting download with local_files_only=False"
387
+ )
388
+ whisper_kwargs["local_files_only"] = False
389
+ model = WhisperModel(**whisper_kwargs)
390
+
391
+ segments, info = model.transcribe(file_path, beam_size=5)
392
+ log.info(
393
+ "Detected language '%s' with probability %f"
394
+ % (info.language, info.language_probability)
395
+ )
396
+
397
+ transcript = "".join([segment.text for segment in list(segments)])
398
+
399
+ data = {"text": transcript.strip()}
400
+
401
+ # save the transcript to a json file
402
+ transcript_file = f"{file_dir}/{id}.json"
403
+ with open(transcript_file, "w") as f:
404
+ json.dump(data, f)
405
+
406
+ print(data)
407
+ return data
408
+ elif app.state.config.STT_ENGINE == "openai":
409
+ if is_mp4_audio(file_path):
410
+ print("is_mp4_audio")
411
+ os.rename(file_path, file_path.replace(".wav", ".mp4"))
412
+ # Convert MP4 audio file to WAV format
413
+ convert_mp4_to_wav(file_path.replace(".wav", ".mp4"), file_path)
414
+
415
+ headers = {"Authorization": f"Bearer {app.state.config.STT_OPENAI_API_KEY}"}
416
+
417
+ files = {"file": (filename, open(file_path, "rb"))}
418
+ data = {"model": app.state.config.STT_MODEL}
419
+
420
+ print(files, data)
421
+
422
+ r = None
423
+ try:
424
+ r = requests.post(
425
+ url=f"{app.state.config.STT_OPENAI_API_BASE_URL}/audio/transcriptions",
426
+ headers=headers,
427
+ files=files,
428
+ data=data,
429
+ )
430
+
431
+ r.raise_for_status()
432
+
433
+ data = r.json()
434
+
435
+ # save the transcript to a json file
436
+ transcript_file = f"{file_dir}/{id}.json"
437
+ with open(transcript_file, "w") as f:
438
+ json.dump(data, f)
439
+
440
+ print(data)
441
+ return data
442
+ except Exception as e:
443
+ log.exception(e)
444
+ error_detail = "Open WebUI: Server Connection Error"
445
+ if r is not None:
446
+ try:
447
+ res = r.json()
448
+ if "error" in res:
449
+ error_detail = f"External: {res['error']['message']}"
450
+ except Exception:
451
+ error_detail = f"External: {e}"
452
+
453
+ raise error_detail
454
+
455
+
456
+ @app.post("/transcriptions")
457
+ def transcription(
458
+ file: UploadFile = File(...),
459
+ user=Depends(get_verified_user),
460
+ ):
461
+ log.info(f"file.content_type: {file.content_type}")
462
+
463
+ if file.content_type not in ["audio/mpeg", "audio/wav", "audio/ogg", "audio/x-m4a"]:
464
+ raise HTTPException(
465
+ status_code=status.HTTP_400_BAD_REQUEST,
466
+ detail=ERROR_MESSAGES.FILE_NOT_SUPPORTED,
467
+ )
468
+
469
+ try:
470
+ ext = file.filename.split(".")[-1]
471
+ id = uuid.uuid4()
472
+
473
+ filename = f"{id}.{ext}"
474
+ contents = file.file.read()
475
+
476
+ file_dir = f"{CACHE_DIR}/audio/transcriptions"
477
+ os.makedirs(file_dir, exist_ok=True)
478
+ file_path = f"{file_dir}/{filename}"
479
+
480
+ with open(file_path, "wb") as f:
481
+ f.write(contents)
482
+
483
+ try:
484
+ if os.path.getsize(file_path) > MAX_FILE_SIZE: # file is bigger than 25MB
485
+ log.debug(f"File size is larger than {MAX_FILE_SIZE_MB}MB")
486
+ audio = AudioSegment.from_file(file_path)
487
+ audio = audio.set_frame_rate(16000).set_channels(1) # Compress audio
488
+ compressed_path = f"{file_dir}/{id}_compressed.opus"
489
+ audio.export(compressed_path, format="opus", bitrate="32k")
490
+ log.debug(f"Compressed audio to {compressed_path}")
491
+ file_path = compressed_path
492
+
493
+ if (
494
+ os.path.getsize(file_path) > MAX_FILE_SIZE
495
+ ): # Still larger than 25MB after compression
496
+ log.debug(
497
+ f"Compressed file size is still larger than {MAX_FILE_SIZE_MB}MB: {os.path.getsize(file_path)}"
498
+ )
499
+ raise HTTPException(
500
+ status_code=status.HTTP_400_BAD_REQUEST,
501
+ detail=ERROR_MESSAGES.FILE_TOO_LARGE(
502
+ size=f"{MAX_FILE_SIZE_MB}MB"
503
+ ),
504
+ )
505
+
506
+ data = transcribe(file_path)
507
+ else:
508
+ data = transcribe(file_path)
509
+
510
+ return data
511
+ except Exception as e:
512
+ log.exception(e)
513
+ raise HTTPException(
514
+ status_code=status.HTTP_400_BAD_REQUEST,
515
+ detail=ERROR_MESSAGES.DEFAULT(e),
516
+ )
517
+
518
+ except Exception as e:
519
+ log.exception(e)
520
+
521
+ raise HTTPException(
522
+ status_code=status.HTTP_400_BAD_REQUEST,
523
+ detail=ERROR_MESSAGES.DEFAULT(e),
524
+ )
525
+
526
+
527
+ def get_available_models() -> list[dict]:
528
+ if app.state.config.TTS_ENGINE == "openai":
529
+ return [{"id": "tts-1"}, {"id": "tts-1-hd"}]
530
+ elif app.state.config.TTS_ENGINE == "elevenlabs":
531
+ headers = {
532
+ "xi-api-key": app.state.config.TTS_API_KEY,
533
+ "Content-Type": "application/json",
534
+ }
535
+
536
+ try:
537
+ response = requests.get(
538
+ "https://api.elevenlabs.io/v1/models", headers=headers, timeout=5
539
+ )
540
+ response.raise_for_status()
541
+ models = response.json()
542
+ return [
543
+ {"name": model["name"], "id": model["model_id"]} for model in models
544
+ ]
545
+ except requests.RequestException as e:
546
+ log.error(f"Error fetching voices: {str(e)}")
547
+ return []
548
+
549
+
550
+ @app.get("/models")
551
+ async def get_models(user=Depends(get_verified_user)):
552
+ return {"models": get_available_models()}
553
+
554
+
555
+ def get_available_voices() -> dict:
556
+ """Returns {voice_id: voice_name} dict"""
557
+ ret = {}
558
+ if app.state.config.TTS_ENGINE == "openai":
559
+ ret = {
560
+ "alloy": "alloy",
561
+ "echo": "echo",
562
+ "fable": "fable",
563
+ "onyx": "onyx",
564
+ "nova": "nova",
565
+ "shimmer": "shimmer",
566
+ }
567
+ elif app.state.config.TTS_ENGINE == "elevenlabs":
568
+ try:
569
+ ret = get_elevenlabs_voices()
570
+ except Exception:
571
+ # Avoided @lru_cache with exception
572
+ pass
573
+ elif app.state.config.TTS_ENGINE == "azure":
574
+ try:
575
+ region = app.state.config.TTS_AZURE_SPEECH_REGION
576
+ url = f"https://{region}.tts.speech.microsoft.com/cognitiveservices/voices/list"
577
+ headers = {"Ocp-Apim-Subscription-Key": app.state.config.TTS_API_KEY}
578
+
579
+ response = requests.get(url, headers=headers)
580
+ response.raise_for_status()
581
+ voices = response.json()
582
+ for voice in voices:
583
+ ret[voice["ShortName"]] = (
584
+ f"{voice['DisplayName']} ({voice['ShortName']})"
585
+ )
586
+ except requests.RequestException as e:
587
+ log.error(f"Error fetching voices: {str(e)}")
588
+
589
+ return ret
590
+
591
+
592
+ @lru_cache
593
+ def get_elevenlabs_voices() -> dict:
594
+ """
595
+ Note, set the following in your .env file to use Elevenlabs:
596
+ AUDIO_TTS_ENGINE=elevenlabs
597
+ AUDIO_TTS_API_KEY=sk_... # Your Elevenlabs API key
598
+ AUDIO_TTS_VOICE=EXAVITQu4vr4xnSDxMaL # From https://api.elevenlabs.io/v1/voices
599
+ AUDIO_TTS_MODEL=eleven_multilingual_v2
600
+ """
601
+ headers = {
602
+ "xi-api-key": app.state.config.TTS_API_KEY,
603
+ "Content-Type": "application/json",
604
+ }
605
+ try:
606
+ # TODO: Add retries
607
+ response = requests.get("https://api.elevenlabs.io/v1/voices", headers=headers)
608
+ response.raise_for_status()
609
+ voices_data = response.json()
610
+
611
+ voices = {}
612
+ for voice in voices_data.get("voices", []):
613
+ voices[voice["voice_id"]] = voice["name"]
614
+ except requests.RequestException as e:
615
+ # Avoid @lru_cache with exception
616
+ log.error(f"Error fetching voices: {str(e)}")
617
+ raise RuntimeError(f"Error fetching voices: {str(e)}")
618
+
619
+ return voices
620
+
621
+
622
+ @app.get("/voices")
623
+ async def get_voices(user=Depends(get_verified_user)):
624
+ return {"voices": [{"id": k, "name": v} for k, v in get_available_voices().items()]}
backend/open_webui/apps/images/main.py ADDED
@@ -0,0 +1,597 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import asyncio
2
+ import base64
3
+ import json
4
+ import logging
5
+ import mimetypes
6
+ import re
7
+ import uuid
8
+ from pathlib import Path
9
+ from typing import Optional
10
+
11
+ import requests
12
+ from open_webui.apps.images.utils.comfyui import (
13
+ ComfyUIGenerateImageForm,
14
+ ComfyUIWorkflow,
15
+ comfyui_generate_image,
16
+ )
17
+ from open_webui.config import (
18
+ AUTOMATIC1111_API_AUTH,
19
+ AUTOMATIC1111_BASE_URL,
20
+ AUTOMATIC1111_CFG_SCALE,
21
+ AUTOMATIC1111_SAMPLER,
22
+ AUTOMATIC1111_SCHEDULER,
23
+ CACHE_DIR,
24
+ COMFYUI_BASE_URL,
25
+ COMFYUI_WORKFLOW,
26
+ COMFYUI_WORKFLOW_NODES,
27
+ CORS_ALLOW_ORIGIN,
28
+ ENABLE_IMAGE_GENERATION,
29
+ IMAGE_GENERATION_ENGINE,
30
+ IMAGE_GENERATION_MODEL,
31
+ IMAGE_SIZE,
32
+ IMAGE_STEPS,
33
+ IMAGES_OPENAI_API_BASE_URL,
34
+ IMAGES_OPENAI_API_KEY,
35
+ AppConfig,
36
+ )
37
+ from open_webui.constants import ERROR_MESSAGES
38
+ from open_webui.env import SRC_LOG_LEVELS
39
+ from fastapi import Depends, FastAPI, HTTPException, Request
40
+ from fastapi.middleware.cors import CORSMiddleware
41
+ from pydantic import BaseModel
42
+ from open_webui.utils.utils import get_admin_user, get_verified_user
43
+
44
+ log = logging.getLogger(__name__)
45
+ log.setLevel(SRC_LOG_LEVELS["IMAGES"])
46
+
47
+ IMAGE_CACHE_DIR = Path(CACHE_DIR).joinpath("./image/generations/")
48
+ IMAGE_CACHE_DIR.mkdir(parents=True, exist_ok=True)
49
+
50
+ app = FastAPI()
51
+ app.add_middleware(
52
+ CORSMiddleware,
53
+ allow_origins=CORS_ALLOW_ORIGIN,
54
+ allow_credentials=True,
55
+ allow_methods=["*"],
56
+ allow_headers=["*"],
57
+ )
58
+
59
+ app.state.config = AppConfig()
60
+
61
+ app.state.config.ENGINE = IMAGE_GENERATION_ENGINE
62
+ app.state.config.ENABLED = ENABLE_IMAGE_GENERATION
63
+
64
+ app.state.config.OPENAI_API_BASE_URL = IMAGES_OPENAI_API_BASE_URL
65
+ app.state.config.OPENAI_API_KEY = IMAGES_OPENAI_API_KEY
66
+
67
+ app.state.config.MODEL = IMAGE_GENERATION_MODEL
68
+
69
+ app.state.config.AUTOMATIC1111_BASE_URL = AUTOMATIC1111_BASE_URL
70
+ app.state.config.AUTOMATIC1111_API_AUTH = AUTOMATIC1111_API_AUTH
71
+ app.state.config.AUTOMATIC1111_CFG_SCALE = AUTOMATIC1111_CFG_SCALE
72
+ app.state.config.AUTOMATIC1111_SAMPLER = AUTOMATIC1111_SAMPLER
73
+ app.state.config.AUTOMATIC1111_SCHEDULER = AUTOMATIC1111_SCHEDULER
74
+ app.state.config.COMFYUI_BASE_URL = COMFYUI_BASE_URL
75
+ app.state.config.COMFYUI_WORKFLOW = COMFYUI_WORKFLOW
76
+ app.state.config.COMFYUI_WORKFLOW_NODES = COMFYUI_WORKFLOW_NODES
77
+
78
+ app.state.config.IMAGE_SIZE = IMAGE_SIZE
79
+ app.state.config.IMAGE_STEPS = IMAGE_STEPS
80
+
81
+
82
+ @app.get("/config")
83
+ async def get_config(request: Request, user=Depends(get_admin_user)):
84
+ return {
85
+ "enabled": app.state.config.ENABLED,
86
+ "engine": app.state.config.ENGINE,
87
+ "openai": {
88
+ "OPENAI_API_BASE_URL": app.state.config.OPENAI_API_BASE_URL,
89
+ "OPENAI_API_KEY": app.state.config.OPENAI_API_KEY,
90
+ },
91
+ "automatic1111": {
92
+ "AUTOMATIC1111_BASE_URL": app.state.config.AUTOMATIC1111_BASE_URL,
93
+ "AUTOMATIC1111_API_AUTH": app.state.config.AUTOMATIC1111_API_AUTH,
94
+ "AUTOMATIC1111_CFG_SCALE": app.state.config.AUTOMATIC1111_CFG_SCALE,
95
+ "AUTOMATIC1111_SAMPLER": app.state.config.AUTOMATIC1111_SAMPLER,
96
+ "AUTOMATIC1111_SCHEDULER": app.state.config.AUTOMATIC1111_SCHEDULER,
97
+ },
98
+ "comfyui": {
99
+ "COMFYUI_BASE_URL": app.state.config.COMFYUI_BASE_URL,
100
+ "COMFYUI_WORKFLOW": app.state.config.COMFYUI_WORKFLOW,
101
+ "COMFYUI_WORKFLOW_NODES": app.state.config.COMFYUI_WORKFLOW_NODES,
102
+ },
103
+ }
104
+
105
+
106
+ class OpenAIConfigForm(BaseModel):
107
+ OPENAI_API_BASE_URL: str
108
+ OPENAI_API_KEY: str
109
+
110
+
111
+ class Automatic1111ConfigForm(BaseModel):
112
+ AUTOMATIC1111_BASE_URL: str
113
+ AUTOMATIC1111_API_AUTH: str
114
+ AUTOMATIC1111_CFG_SCALE: Optional[str]
115
+ AUTOMATIC1111_SAMPLER: Optional[str]
116
+ AUTOMATIC1111_SCHEDULER: Optional[str]
117
+
118
+
119
+ class ComfyUIConfigForm(BaseModel):
120
+ COMFYUI_BASE_URL: str
121
+ COMFYUI_WORKFLOW: str
122
+ COMFYUI_WORKFLOW_NODES: list[dict]
123
+
124
+
125
+ class ConfigForm(BaseModel):
126
+ enabled: bool
127
+ engine: str
128
+ openai: OpenAIConfigForm
129
+ automatic1111: Automatic1111ConfigForm
130
+ comfyui: ComfyUIConfigForm
131
+
132
+
133
+ @app.post("/config/update")
134
+ async def update_config(form_data: ConfigForm, user=Depends(get_admin_user)):
135
+ app.state.config.ENGINE = form_data.engine
136
+ app.state.config.ENABLED = form_data.enabled
137
+
138
+ app.state.config.OPENAI_API_BASE_URL = form_data.openai.OPENAI_API_BASE_URL
139
+ app.state.config.OPENAI_API_KEY = form_data.openai.OPENAI_API_KEY
140
+
141
+ app.state.config.AUTOMATIC1111_BASE_URL = (
142
+ form_data.automatic1111.AUTOMATIC1111_BASE_URL
143
+ )
144
+ app.state.config.AUTOMATIC1111_API_AUTH = (
145
+ form_data.automatic1111.AUTOMATIC1111_API_AUTH
146
+ )
147
+
148
+ app.state.config.AUTOMATIC1111_CFG_SCALE = (
149
+ float(form_data.automatic1111.AUTOMATIC1111_CFG_SCALE)
150
+ if form_data.automatic1111.AUTOMATIC1111_CFG_SCALE
151
+ else None
152
+ )
153
+ app.state.config.AUTOMATIC1111_SAMPLER = (
154
+ form_data.automatic1111.AUTOMATIC1111_SAMPLER
155
+ if form_data.automatic1111.AUTOMATIC1111_SAMPLER
156
+ else None
157
+ )
158
+ app.state.config.AUTOMATIC1111_SCHEDULER = (
159
+ form_data.automatic1111.AUTOMATIC1111_SCHEDULER
160
+ if form_data.automatic1111.AUTOMATIC1111_SCHEDULER
161
+ else None
162
+ )
163
+
164
+ app.state.config.COMFYUI_BASE_URL = form_data.comfyui.COMFYUI_BASE_URL.strip("/")
165
+ app.state.config.COMFYUI_WORKFLOW = form_data.comfyui.COMFYUI_WORKFLOW
166
+ app.state.config.COMFYUI_WORKFLOW_NODES = form_data.comfyui.COMFYUI_WORKFLOW_NODES
167
+
168
+ return {
169
+ "enabled": app.state.config.ENABLED,
170
+ "engine": app.state.config.ENGINE,
171
+ "openai": {
172
+ "OPENAI_API_BASE_URL": app.state.config.OPENAI_API_BASE_URL,
173
+ "OPENAI_API_KEY": app.state.config.OPENAI_API_KEY,
174
+ },
175
+ "automatic1111": {
176
+ "AUTOMATIC1111_BASE_URL": app.state.config.AUTOMATIC1111_BASE_URL,
177
+ "AUTOMATIC1111_API_AUTH": app.state.config.AUTOMATIC1111_API_AUTH,
178
+ "AUTOMATIC1111_CFG_SCALE": app.state.config.AUTOMATIC1111_CFG_SCALE,
179
+ "AUTOMATIC1111_SAMPLER": app.state.config.AUTOMATIC1111_SAMPLER,
180
+ "AUTOMATIC1111_SCHEDULER": app.state.config.AUTOMATIC1111_SCHEDULER,
181
+ },
182
+ "comfyui": {
183
+ "COMFYUI_BASE_URL": app.state.config.COMFYUI_BASE_URL,
184
+ "COMFYUI_WORKFLOW": app.state.config.COMFYUI_WORKFLOW,
185
+ "COMFYUI_WORKFLOW_NODES": app.state.config.COMFYUI_WORKFLOW_NODES,
186
+ },
187
+ }
188
+
189
+
190
+ def get_automatic1111_api_auth():
191
+ if app.state.config.AUTOMATIC1111_API_AUTH is None:
192
+ return ""
193
+ else:
194
+ auth1111_byte_string = app.state.config.AUTOMATIC1111_API_AUTH.encode("utf-8")
195
+ auth1111_base64_encoded_bytes = base64.b64encode(auth1111_byte_string)
196
+ auth1111_base64_encoded_string = auth1111_base64_encoded_bytes.decode("utf-8")
197
+ return f"Basic {auth1111_base64_encoded_string}"
198
+
199
+
200
+ @app.get("/config/url/verify")
201
+ async def verify_url(user=Depends(get_admin_user)):
202
+ if app.state.config.ENGINE == "automatic1111":
203
+ try:
204
+ r = requests.get(
205
+ url=f"{app.state.config.AUTOMATIC1111_BASE_URL}/sdapi/v1/options",
206
+ headers={"authorization": get_automatic1111_api_auth()},
207
+ )
208
+ r.raise_for_status()
209
+ return True
210
+ except Exception:
211
+ app.state.config.ENABLED = False
212
+ raise HTTPException(status_code=400, detail=ERROR_MESSAGES.INVALID_URL)
213
+ elif app.state.config.ENGINE == "comfyui":
214
+ try:
215
+ r = requests.get(url=f"{app.state.config.COMFYUI_BASE_URL}/object_info")
216
+ r.raise_for_status()
217
+ return True
218
+ except Exception:
219
+ app.state.config.ENABLED = False
220
+ raise HTTPException(status_code=400, detail=ERROR_MESSAGES.INVALID_URL)
221
+ else:
222
+ return True
223
+
224
+
225
+ def set_image_model(model: str):
226
+ log.info(f"Setting image model to {model}")
227
+ app.state.config.MODEL = model
228
+ if app.state.config.ENGINE in ["", "automatic1111"]:
229
+ api_auth = get_automatic1111_api_auth()
230
+ r = requests.get(
231
+ url=f"{app.state.config.AUTOMATIC1111_BASE_URL}/sdapi/v1/options",
232
+ headers={"authorization": api_auth},
233
+ )
234
+ options = r.json()
235
+ if model != options["sd_model_checkpoint"]:
236
+ options["sd_model_checkpoint"] = model
237
+ r = requests.post(
238
+ url=f"{app.state.config.AUTOMATIC1111_BASE_URL}/sdapi/v1/options",
239
+ json=options,
240
+ headers={"authorization": api_auth},
241
+ )
242
+ return app.state.config.MODEL
243
+
244
+
245
+ def get_image_model():
246
+ if app.state.config.ENGINE == "openai":
247
+ return app.state.config.MODEL if app.state.config.MODEL else "dall-e-2"
248
+ elif app.state.config.ENGINE == "comfyui":
249
+ return app.state.config.MODEL if app.state.config.MODEL else ""
250
+ elif app.state.config.ENGINE == "automatic1111" or app.state.config.ENGINE == "":
251
+ try:
252
+ r = requests.get(
253
+ url=f"{app.state.config.AUTOMATIC1111_BASE_URL}/sdapi/v1/options",
254
+ headers={"authorization": get_automatic1111_api_auth()},
255
+ )
256
+ options = r.json()
257
+ return options["sd_model_checkpoint"]
258
+ except Exception as e:
259
+ app.state.config.ENABLED = False
260
+ raise HTTPException(status_code=400, detail=ERROR_MESSAGES.DEFAULT(e))
261
+
262
+
263
+ class ImageConfigForm(BaseModel):
264
+ MODEL: str
265
+ IMAGE_SIZE: str
266
+ IMAGE_STEPS: int
267
+
268
+
269
+ @app.get("/image/config")
270
+ async def get_image_config(user=Depends(get_admin_user)):
271
+ return {
272
+ "MODEL": app.state.config.MODEL,
273
+ "IMAGE_SIZE": app.state.config.IMAGE_SIZE,
274
+ "IMAGE_STEPS": app.state.config.IMAGE_STEPS,
275
+ }
276
+
277
+
278
+ @app.post("/image/config/update")
279
+ async def update_image_config(form_data: ImageConfigForm, user=Depends(get_admin_user)):
280
+
281
+ set_image_model(form_data.MODEL)
282
+
283
+ pattern = r"^\d+x\d+$"
284
+ if re.match(pattern, form_data.IMAGE_SIZE):
285
+ app.state.config.IMAGE_SIZE = form_data.IMAGE_SIZE
286
+ else:
287
+ raise HTTPException(
288
+ status_code=400,
289
+ detail=ERROR_MESSAGES.INCORRECT_FORMAT(" (e.g., 512x512)."),
290
+ )
291
+
292
+ if form_data.IMAGE_STEPS >= 0:
293
+ app.state.config.IMAGE_STEPS = form_data.IMAGE_STEPS
294
+ else:
295
+ raise HTTPException(
296
+ status_code=400,
297
+ detail=ERROR_MESSAGES.INCORRECT_FORMAT(" (e.g., 50)."),
298
+ )
299
+
300
+ return {
301
+ "MODEL": app.state.config.MODEL,
302
+ "IMAGE_SIZE": app.state.config.IMAGE_SIZE,
303
+ "IMAGE_STEPS": app.state.config.IMAGE_STEPS,
304
+ }
305
+
306
+
307
+ @app.get("/models")
308
+ def get_models(user=Depends(get_verified_user)):
309
+ try:
310
+ if app.state.config.ENGINE == "openai":
311
+ return [
312
+ {"id": "dall-e-2", "name": "DALL·E 2"},
313
+ {"id": "dall-e-3", "name": "DALL·E 3"},
314
+ ]
315
+ elif app.state.config.ENGINE == "comfyui":
316
+ # TODO - get models from comfyui
317
+ r = requests.get(url=f"{app.state.config.COMFYUI_BASE_URL}/object_info")
318
+ info = r.json()
319
+
320
+ workflow = json.loads(app.state.config.COMFYUI_WORKFLOW)
321
+ model_node_id = None
322
+
323
+ for node in app.state.config.COMFYUI_WORKFLOW_NODES:
324
+ if node["type"] == "model":
325
+ if node["node_ids"]:
326
+ model_node_id = node["node_ids"][0]
327
+ break
328
+
329
+ if model_node_id:
330
+ model_list_key = None
331
+
332
+ print(workflow[model_node_id]["class_type"])
333
+ for key in info[workflow[model_node_id]["class_type"]]["input"][
334
+ "required"
335
+ ]:
336
+ if "_name" in key:
337
+ model_list_key = key
338
+ break
339
+
340
+ if model_list_key:
341
+ return list(
342
+ map(
343
+ lambda model: {"id": model, "name": model},
344
+ info[workflow[model_node_id]["class_type"]]["input"][
345
+ "required"
346
+ ][model_list_key][0],
347
+ )
348
+ )
349
+ else:
350
+ return list(
351
+ map(
352
+ lambda model: {"id": model, "name": model},
353
+ info["CheckpointLoaderSimple"]["input"]["required"][
354
+ "ckpt_name"
355
+ ][0],
356
+ )
357
+ )
358
+ elif (
359
+ app.state.config.ENGINE == "automatic1111" or app.state.config.ENGINE == ""
360
+ ):
361
+ r = requests.get(
362
+ url=f"{app.state.config.AUTOMATIC1111_BASE_URL}/sdapi/v1/sd-models",
363
+ headers={"authorization": get_automatic1111_api_auth()},
364
+ )
365
+ models = r.json()
366
+ return list(
367
+ map(
368
+ lambda model: {"id": model["title"], "name": model["model_name"]},
369
+ models,
370
+ )
371
+ )
372
+ except Exception as e:
373
+ app.state.config.ENABLED = False
374
+ raise HTTPException(status_code=400, detail=ERROR_MESSAGES.DEFAULT(e))
375
+
376
+
377
+ class GenerateImageForm(BaseModel):
378
+ model: Optional[str] = None
379
+ prompt: str
380
+ size: Optional[str] = None
381
+ n: int = 1
382
+ negative_prompt: Optional[str] = None
383
+
384
+
385
+ def save_b64_image(b64_str):
386
+ try:
387
+ image_id = str(uuid.uuid4())
388
+
389
+ if "," in b64_str:
390
+ header, encoded = b64_str.split(",", 1)
391
+ mime_type = header.split(";")[0]
392
+
393
+ img_data = base64.b64decode(encoded)
394
+ image_format = mimetypes.guess_extension(mime_type)
395
+
396
+ image_filename = f"{image_id}{image_format}"
397
+ file_path = IMAGE_CACHE_DIR / f"{image_filename}"
398
+ with open(file_path, "wb") as f:
399
+ f.write(img_data)
400
+ return image_filename
401
+ else:
402
+ image_filename = f"{image_id}.png"
403
+ file_path = IMAGE_CACHE_DIR.joinpath(image_filename)
404
+
405
+ img_data = base64.b64decode(b64_str)
406
+
407
+ # Write the image data to a file
408
+ with open(file_path, "wb") as f:
409
+ f.write(img_data)
410
+ return image_filename
411
+
412
+ except Exception as e:
413
+ log.exception(f"Error saving image: {e}")
414
+ return None
415
+
416
+
417
+ def save_url_image(url):
418
+ image_id = str(uuid.uuid4())
419
+ try:
420
+ r = requests.get(url)
421
+ r.raise_for_status()
422
+ if r.headers["content-type"].split("/")[0] == "image":
423
+ mime_type = r.headers["content-type"]
424
+ image_format = mimetypes.guess_extension(mime_type)
425
+
426
+ if not image_format:
427
+ raise ValueError("Could not determine image type from MIME type")
428
+
429
+ image_filename = f"{image_id}{image_format}"
430
+
431
+ file_path = IMAGE_CACHE_DIR.joinpath(f"{image_filename}")
432
+ with open(file_path, "wb") as image_file:
433
+ for chunk in r.iter_content(chunk_size=8192):
434
+ image_file.write(chunk)
435
+ return image_filename
436
+ else:
437
+ log.error("Url does not point to an image.")
438
+ return None
439
+
440
+ except Exception as e:
441
+ log.exception(f"Error saving image: {e}")
442
+ return None
443
+
444
+
445
+ @app.post("/generations")
446
+ async def image_generations(
447
+ form_data: GenerateImageForm,
448
+ user=Depends(get_verified_user),
449
+ ):
450
+ width, height = tuple(map(int, app.state.config.IMAGE_SIZE.split("x")))
451
+
452
+ r = None
453
+ try:
454
+ if app.state.config.ENGINE == "openai":
455
+ headers = {}
456
+ headers["Authorization"] = f"Bearer {app.state.config.OPENAI_API_KEY}"
457
+ headers["Content-Type"] = "application/json"
458
+
459
+ data = {
460
+ "model": (
461
+ app.state.config.MODEL
462
+ if app.state.config.MODEL != ""
463
+ else "dall-e-2"
464
+ ),
465
+ "prompt": form_data.prompt,
466
+ "n": form_data.n,
467
+ "size": (
468
+ form_data.size if form_data.size else app.state.config.IMAGE_SIZE
469
+ ),
470
+ "response_format": "b64_json",
471
+ }
472
+
473
+ # Use asyncio.to_thread for the requests.post call
474
+ r = await asyncio.to_thread(
475
+ requests.post,
476
+ url=f"{app.state.config.OPENAI_API_BASE_URL}/images/generations",
477
+ json=data,
478
+ headers=headers,
479
+ )
480
+
481
+ r.raise_for_status()
482
+ res = r.json()
483
+
484
+ images = []
485
+
486
+ for image in res["data"]:
487
+ image_filename = save_b64_image(image["b64_json"])
488
+ images.append({"url": f"/cache/image/generations/{image_filename}"})
489
+ file_body_path = IMAGE_CACHE_DIR.joinpath(f"{image_filename}.json")
490
+
491
+ with open(file_body_path, "w") as f:
492
+ json.dump(data, f)
493
+
494
+ return images
495
+
496
+ elif app.state.config.ENGINE == "comfyui":
497
+ data = {
498
+ "prompt": form_data.prompt,
499
+ "width": width,
500
+ "height": height,
501
+ "n": form_data.n,
502
+ }
503
+
504
+ if app.state.config.IMAGE_STEPS is not None:
505
+ data["steps"] = app.state.config.IMAGE_STEPS
506
+
507
+ if form_data.negative_prompt is not None:
508
+ data["negative_prompt"] = form_data.negative_prompt
509
+
510
+ form_data = ComfyUIGenerateImageForm(
511
+ **{
512
+ "workflow": ComfyUIWorkflow(
513
+ **{
514
+ "workflow": app.state.config.COMFYUI_WORKFLOW,
515
+ "nodes": app.state.config.COMFYUI_WORKFLOW_NODES,
516
+ }
517
+ ),
518
+ **data,
519
+ }
520
+ )
521
+ res = await comfyui_generate_image(
522
+ app.state.config.MODEL,
523
+ form_data,
524
+ user.id,
525
+ app.state.config.COMFYUI_BASE_URL,
526
+ )
527
+ log.debug(f"res: {res}")
528
+
529
+ images = []
530
+
531
+ for image in res["data"]:
532
+ image_filename = save_url_image(image["url"])
533
+ images.append({"url": f"/cache/image/generations/{image_filename}"})
534
+ file_body_path = IMAGE_CACHE_DIR.joinpath(f"{image_filename}.json")
535
+
536
+ with open(file_body_path, "w") as f:
537
+ json.dump(form_data.model_dump(exclude_none=True), f)
538
+
539
+ log.debug(f"images: {images}")
540
+ return images
541
+ elif (
542
+ app.state.config.ENGINE == "automatic1111" or app.state.config.ENGINE == ""
543
+ ):
544
+ if form_data.model:
545
+ set_image_model(form_data.model)
546
+
547
+ data = {
548
+ "prompt": form_data.prompt,
549
+ "batch_size": form_data.n,
550
+ "width": width,
551
+ "height": height,
552
+ }
553
+
554
+ if app.state.config.IMAGE_STEPS is not None:
555
+ data["steps"] = app.state.config.IMAGE_STEPS
556
+
557
+ if form_data.negative_prompt is not None:
558
+ data["negative_prompt"] = form_data.negative_prompt
559
+
560
+ if app.state.config.AUTOMATIC1111_CFG_SCALE:
561
+ data["cfg_scale"] = app.state.config.AUTOMATIC1111_CFG_SCALE
562
+
563
+ if app.state.config.AUTOMATIC1111_SAMPLER:
564
+ data["sampler_name"] = app.state.config.AUTOMATIC1111_SAMPLER
565
+
566
+ if app.state.config.AUTOMATIC1111_SCHEDULER:
567
+ data["scheduler"] = app.state.config.AUTOMATIC1111_SCHEDULER
568
+
569
+ # Use asyncio.to_thread for the requests.post call
570
+ r = await asyncio.to_thread(
571
+ requests.post,
572
+ url=f"{app.state.config.AUTOMATIC1111_BASE_URL}/sdapi/v1/txt2img",
573
+ json=data,
574
+ headers={"authorization": get_automatic1111_api_auth()},
575
+ )
576
+
577
+ res = r.json()
578
+ log.debug(f"res: {res}")
579
+
580
+ images = []
581
+
582
+ for image in res["images"]:
583
+ image_filename = save_b64_image(image)
584
+ images.append({"url": f"/cache/image/generations/{image_filename}"})
585
+ file_body_path = IMAGE_CACHE_DIR.joinpath(f"{image_filename}.json")
586
+
587
+ with open(file_body_path, "w") as f:
588
+ json.dump({**data, "info": res["info"]}, f)
589
+
590
+ return images
591
+ except Exception as e:
592
+ error = e
593
+ if r != None:
594
+ data = r.json()
595
+ if "error" in data:
596
+ error = data["error"]["message"]
597
+ raise HTTPException(status_code=400, detail=ERROR_MESSAGES.DEFAULT(error))
backend/open_webui/apps/images/utils/comfyui.py ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import asyncio
2
+ import json
3
+ import logging
4
+ import random
5
+ import urllib.parse
6
+ import urllib.request
7
+ from typing import Optional
8
+
9
+ import websocket # NOTE: websocket-client (https://github.com/websocket-client/websocket-client)
10
+ from open_webui.env import SRC_LOG_LEVELS
11
+ from pydantic import BaseModel
12
+
13
+ log = logging.getLogger(__name__)
14
+ log.setLevel(SRC_LOG_LEVELS["COMFYUI"])
15
+
16
+ default_headers = {"User-Agent": "Mozilla/5.0"}
17
+
18
+
19
+ def queue_prompt(prompt, client_id, base_url):
20
+ log.info("queue_prompt")
21
+ p = {"prompt": prompt, "client_id": client_id}
22
+ data = json.dumps(p).encode("utf-8")
23
+ log.debug(f"queue_prompt data: {data}")
24
+ try:
25
+ req = urllib.request.Request(
26
+ f"{base_url}/prompt", data=data, headers=default_headers
27
+ )
28
+ response = urllib.request.urlopen(req).read()
29
+ return json.loads(response)
30
+ except Exception as e:
31
+ log.exception(f"Error while queuing prompt: {e}")
32
+ raise e
33
+
34
+
35
+ def get_image(filename, subfolder, folder_type, base_url):
36
+ log.info("get_image")
37
+ data = {"filename": filename, "subfolder": subfolder, "type": folder_type}
38
+ url_values = urllib.parse.urlencode(data)
39
+ req = urllib.request.Request(
40
+ f"{base_url}/view?{url_values}", headers=default_headers
41
+ )
42
+ with urllib.request.urlopen(req) as response:
43
+ return response.read()
44
+
45
+
46
+ def get_image_url(filename, subfolder, folder_type, base_url):
47
+ log.info("get_image")
48
+ data = {"filename": filename, "subfolder": subfolder, "type": folder_type}
49
+ url_values = urllib.parse.urlencode(data)
50
+ return f"{base_url}/view?{url_values}"
51
+
52
+
53
+ def get_history(prompt_id, base_url):
54
+ log.info("get_history")
55
+
56
+ req = urllib.request.Request(
57
+ f"{base_url}/history/{prompt_id}", headers=default_headers
58
+ )
59
+ with urllib.request.urlopen(req) as response:
60
+ return json.loads(response.read())
61
+
62
+
63
+ def get_images(ws, prompt, client_id, base_url):
64
+ prompt_id = queue_prompt(prompt, client_id, base_url)["prompt_id"]
65
+ output_images = []
66
+ while True:
67
+ out = ws.recv()
68
+ if isinstance(out, str):
69
+ message = json.loads(out)
70
+ if message["type"] == "executing":
71
+ data = message["data"]
72
+ if data["node"] is None and data["prompt_id"] == prompt_id:
73
+ break # Execution is done
74
+ else:
75
+ continue # previews are binary data
76
+
77
+ history = get_history(prompt_id, base_url)[prompt_id]
78
+ for o in history["outputs"]:
79
+ for node_id in history["outputs"]:
80
+ node_output = history["outputs"][node_id]
81
+ if "images" in node_output:
82
+ for image in node_output["images"]:
83
+ url = get_image_url(
84
+ image["filename"], image["subfolder"], image["type"], base_url
85
+ )
86
+ output_images.append({"url": url})
87
+ return {"data": output_images}
88
+
89
+
90
+ class ComfyUINodeInput(BaseModel):
91
+ type: Optional[str] = None
92
+ node_ids: list[str] = []
93
+ key: Optional[str] = "text"
94
+ value: Optional[str] = None
95
+
96
+
97
+ class ComfyUIWorkflow(BaseModel):
98
+ workflow: str
99
+ nodes: list[ComfyUINodeInput]
100
+
101
+
102
+ class ComfyUIGenerateImageForm(BaseModel):
103
+ workflow: ComfyUIWorkflow
104
+
105
+ prompt: str
106
+ negative_prompt: Optional[str] = None
107
+ width: int
108
+ height: int
109
+ n: int = 1
110
+
111
+ steps: Optional[int] = None
112
+ seed: Optional[int] = None
113
+
114
+
115
+ async def comfyui_generate_image(
116
+ model: str, payload: ComfyUIGenerateImageForm, client_id, base_url
117
+ ):
118
+ ws_url = base_url.replace("http://", "ws://").replace("https://", "wss://")
119
+ workflow = json.loads(payload.workflow.workflow)
120
+
121
+ for node in payload.workflow.nodes:
122
+ if node.type:
123
+ if node.type == "model":
124
+ for node_id in node.node_ids:
125
+ workflow[node_id]["inputs"][node.key] = model
126
+ elif node.type == "prompt":
127
+ for node_id in node.node_ids:
128
+ workflow[node_id]["inputs"]["text"] = payload.prompt
129
+ elif node.type == "negative_prompt":
130
+ for node_id in node.node_ids:
131
+ workflow[node_id]["inputs"]["text"] = payload.negative_prompt
132
+ elif node.type == "width":
133
+ for node_id in node.node_ids:
134
+ workflow[node_id]["inputs"]["width"] = payload.width
135
+ elif node.type == "height":
136
+ for node_id in node.node_ids:
137
+ workflow[node_id]["inputs"]["height"] = payload.height
138
+ elif node.type == "n":
139
+ for node_id in node.node_ids:
140
+ workflow[node_id]["inputs"]["batch_size"] = payload.n
141
+ elif node.type == "steps":
142
+ for node_id in node.node_ids:
143
+ workflow[node_id]["inputs"]["steps"] = payload.steps
144
+ elif node.type == "seed":
145
+ seed = (
146
+ payload.seed
147
+ if payload.seed
148
+ else random.randint(0, 18446744073709551614)
149
+ )
150
+ for node_id in node.node_ids:
151
+ workflow[node_id]["inputs"][node.key] = seed
152
+ else:
153
+ for node_id in node.node_ids:
154
+ workflow[node_id]["inputs"][node.key] = node.value
155
+
156
+ try:
157
+ ws = websocket.WebSocket()
158
+ ws.connect(f"{ws_url}/ws?clientId={client_id}")
159
+ log.info("WebSocket connection established.")
160
+ except Exception as e:
161
+ log.exception(f"Failed to connect to WebSocket server: {e}")
162
+ return None
163
+
164
+ try:
165
+ log.info("Sending workflow to WebSocket server.")
166
+ log.info(f"Workflow: {workflow}")
167
+ images = await asyncio.to_thread(get_images, ws, workflow, client_id, base_url)
168
+ except Exception as e:
169
+ log.exception(f"Error while receiving images: {e}")
170
+ images = None
171
+
172
+ ws.close()
173
+
174
+ return images
backend/open_webui/apps/ollama/main.py ADDED
@@ -0,0 +1,1146 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import asyncio
2
+ import json
3
+ import logging
4
+ import os
5
+ import random
6
+ import re
7
+ import time
8
+ from typing import Optional, Union
9
+ from urllib.parse import urlparse
10
+
11
+ import aiohttp
12
+ import requests
13
+ from open_webui.apps.webui.models.models import Models
14
+ from open_webui.config import (
15
+ CORS_ALLOW_ORIGIN,
16
+ ENABLE_MODEL_FILTER,
17
+ ENABLE_OLLAMA_API,
18
+ MODEL_FILTER_LIST,
19
+ OLLAMA_BASE_URLS,
20
+ UPLOAD_DIR,
21
+ AppConfig,
22
+ )
23
+ from open_webui.env import AIOHTTP_CLIENT_TIMEOUT
24
+
25
+
26
+ from open_webui.constants import ERROR_MESSAGES
27
+ from open_webui.env import SRC_LOG_LEVELS
28
+ from fastapi import Depends, FastAPI, File, HTTPException, Request, UploadFile
29
+ from fastapi.middleware.cors import CORSMiddleware
30
+ from fastapi.responses import StreamingResponse
31
+ from pydantic import BaseModel, ConfigDict
32
+ from starlette.background import BackgroundTask
33
+
34
+
35
+ from open_webui.utils.misc import (
36
+ calculate_sha256,
37
+ )
38
+ from open_webui.utils.payload import (
39
+ apply_model_params_to_body_ollama,
40
+ apply_model_params_to_body_openai,
41
+ apply_model_system_prompt_to_body,
42
+ )
43
+ from open_webui.utils.utils import get_admin_user, get_verified_user
44
+
45
+ log = logging.getLogger(__name__)
46
+ log.setLevel(SRC_LOG_LEVELS["OLLAMA"])
47
+
48
+ app = FastAPI()
49
+ app.add_middleware(
50
+ CORSMiddleware,
51
+ allow_origins=CORS_ALLOW_ORIGIN,
52
+ allow_credentials=True,
53
+ allow_methods=["*"],
54
+ allow_headers=["*"],
55
+ )
56
+
57
+ app.state.config = AppConfig()
58
+
59
+ app.state.config.ENABLE_MODEL_FILTER = ENABLE_MODEL_FILTER
60
+ app.state.config.MODEL_FILTER_LIST = MODEL_FILTER_LIST
61
+
62
+ app.state.config.ENABLE_OLLAMA_API = ENABLE_OLLAMA_API
63
+ app.state.config.OLLAMA_BASE_URLS = OLLAMA_BASE_URLS
64
+ app.state.MODELS = {}
65
+
66
+
67
+ # TODO: Implement a more intelligent load balancing mechanism for distributing requests among multiple backend instances.
68
+ # Current implementation uses a simple round-robin approach (random.choice). Consider incorporating algorithms like weighted round-robin,
69
+ # least connections, or least response time for better resource utilization and performance optimization.
70
+
71
+
72
+ @app.middleware("http")
73
+ async def check_url(request: Request, call_next):
74
+ if len(app.state.MODELS) == 0:
75
+ await get_all_models()
76
+ else:
77
+ pass
78
+
79
+ response = await call_next(request)
80
+ return response
81
+
82
+
83
+ @app.head("/")
84
+ @app.get("/")
85
+ async def get_status():
86
+ return {"status": True}
87
+
88
+
89
+ @app.get("/config")
90
+ async def get_config(user=Depends(get_admin_user)):
91
+ return {"ENABLE_OLLAMA_API": app.state.config.ENABLE_OLLAMA_API}
92
+
93
+
94
+ class OllamaConfigForm(BaseModel):
95
+ enable_ollama_api: Optional[bool] = None
96
+
97
+
98
+ @app.post("/config/update")
99
+ async def update_config(form_data: OllamaConfigForm, user=Depends(get_admin_user)):
100
+ app.state.config.ENABLE_OLLAMA_API = form_data.enable_ollama_api
101
+ return {"ENABLE_OLLAMA_API": app.state.config.ENABLE_OLLAMA_API}
102
+
103
+
104
+ @app.get("/urls")
105
+ async def get_ollama_api_urls(user=Depends(get_admin_user)):
106
+ return {"OLLAMA_BASE_URLS": app.state.config.OLLAMA_BASE_URLS}
107
+
108
+
109
+ class UrlUpdateForm(BaseModel):
110
+ urls: list[str]
111
+
112
+
113
+ @app.post("/urls/update")
114
+ async def update_ollama_api_url(form_data: UrlUpdateForm, user=Depends(get_admin_user)):
115
+ app.state.config.OLLAMA_BASE_URLS = form_data.urls
116
+
117
+ log.info(f"app.state.config.OLLAMA_BASE_URLS: {app.state.config.OLLAMA_BASE_URLS}")
118
+ return {"OLLAMA_BASE_URLS": app.state.config.OLLAMA_BASE_URLS}
119
+
120
+
121
+ async def fetch_url(url):
122
+ timeout = aiohttp.ClientTimeout(total=3)
123
+ try:
124
+ async with aiohttp.ClientSession(timeout=timeout, trust_env=True) as session:
125
+ async with session.get(url) as response:
126
+ return await response.json()
127
+ except Exception as e:
128
+ # Handle connection error here
129
+ log.error(f"Connection error: {e}")
130
+ return None
131
+
132
+
133
+ async def cleanup_response(
134
+ response: Optional[aiohttp.ClientResponse],
135
+ session: Optional[aiohttp.ClientSession],
136
+ ):
137
+ if response:
138
+ response.close()
139
+ if session:
140
+ await session.close()
141
+
142
+
143
+ async def post_streaming_url(
144
+ url: str, payload: Union[str, bytes], stream: bool = True, content_type=None
145
+ ):
146
+ r = None
147
+ try:
148
+ session = aiohttp.ClientSession(
149
+ trust_env=True, timeout=aiohttp.ClientTimeout(total=AIOHTTP_CLIENT_TIMEOUT)
150
+ )
151
+ r = await session.post(
152
+ url,
153
+ data=payload,
154
+ headers={"Content-Type": "application/json"},
155
+ )
156
+ r.raise_for_status()
157
+
158
+ if stream:
159
+ headers = dict(r.headers)
160
+ if content_type:
161
+ headers["Content-Type"] = content_type
162
+ return StreamingResponse(
163
+ r.content,
164
+ status_code=r.status,
165
+ headers=headers,
166
+ background=BackgroundTask(
167
+ cleanup_response, response=r, session=session
168
+ ),
169
+ )
170
+ else:
171
+ res = await r.json()
172
+ await cleanup_response(r, session)
173
+ return res
174
+
175
+ except Exception as e:
176
+ error_detail = "Open WebUI: Server Connection Error"
177
+ if r is not None:
178
+ try:
179
+ res = await r.json()
180
+ if "error" in res:
181
+ error_detail = f"Ollama: {res['error']}"
182
+ except Exception:
183
+ error_detail = f"Ollama: {e}"
184
+
185
+ raise HTTPException(
186
+ status_code=r.status if r else 500,
187
+ detail=error_detail,
188
+ )
189
+
190
+
191
+ def merge_models_lists(model_lists):
192
+ merged_models = {}
193
+
194
+ for idx, model_list in enumerate(model_lists):
195
+ if model_list is not None:
196
+ for model in model_list:
197
+ digest = model["digest"]
198
+ if digest not in merged_models:
199
+ model["urls"] = [idx]
200
+ merged_models[digest] = model
201
+ else:
202
+ merged_models[digest]["urls"].append(idx)
203
+
204
+ return list(merged_models.values())
205
+
206
+
207
+ async def get_all_models():
208
+ log.info("get_all_models()")
209
+
210
+ if app.state.config.ENABLE_OLLAMA_API:
211
+ tasks = [
212
+ fetch_url(f"{url}/api/tags") for url in app.state.config.OLLAMA_BASE_URLS
213
+ ]
214
+ responses = await asyncio.gather(*tasks)
215
+
216
+ models = {
217
+ "models": merge_models_lists(
218
+ map(
219
+ lambda response: response["models"] if response else None, responses
220
+ )
221
+ )
222
+ }
223
+
224
+ else:
225
+ models = {"models": []}
226
+
227
+ app.state.MODELS = {model["model"]: model for model in models["models"]}
228
+
229
+ return models
230
+
231
+
232
+ @app.get("/api/tags")
233
+ @app.get("/api/tags/{url_idx}")
234
+ async def get_ollama_tags(
235
+ url_idx: Optional[int] = None, user=Depends(get_verified_user)
236
+ ):
237
+ if url_idx is None:
238
+ models = await get_all_models()
239
+
240
+ if app.state.config.ENABLE_MODEL_FILTER:
241
+ if user.role == "user":
242
+ models["models"] = list(
243
+ filter(
244
+ lambda model: model["name"]
245
+ in app.state.config.MODEL_FILTER_LIST,
246
+ models["models"],
247
+ )
248
+ )
249
+ return models
250
+ return models
251
+ else:
252
+ url = app.state.config.OLLAMA_BASE_URLS[url_idx]
253
+
254
+ r = None
255
+ try:
256
+ r = requests.request(method="GET", url=f"{url}/api/tags")
257
+ r.raise_for_status()
258
+
259
+ return r.json()
260
+ except Exception as e:
261
+ log.exception(e)
262
+ error_detail = "Open WebUI: Server Connection Error"
263
+ if r is not None:
264
+ try:
265
+ res = r.json()
266
+ if "error" in res:
267
+ error_detail = f"Ollama: {res['error']}"
268
+ except Exception:
269
+ error_detail = f"Ollama: {e}"
270
+
271
+ raise HTTPException(
272
+ status_code=r.status_code if r else 500,
273
+ detail=error_detail,
274
+ )
275
+
276
+
277
+ @app.get("/api/version")
278
+ @app.get("/api/version/{url_idx}")
279
+ async def get_ollama_versions(url_idx: Optional[int] = None):
280
+ if app.state.config.ENABLE_OLLAMA_API:
281
+ if url_idx is None:
282
+ # returns lowest version
283
+ tasks = [
284
+ fetch_url(f"{url}/api/version")
285
+ for url in app.state.config.OLLAMA_BASE_URLS
286
+ ]
287
+ responses = await asyncio.gather(*tasks)
288
+ responses = list(filter(lambda x: x is not None, responses))
289
+
290
+ if len(responses) > 0:
291
+ lowest_version = min(
292
+ responses,
293
+ key=lambda x: tuple(
294
+ map(int, re.sub(r"^v|-.*", "", x["version"]).split("."))
295
+ ),
296
+ )
297
+
298
+ return {"version": lowest_version["version"]}
299
+ else:
300
+ raise HTTPException(
301
+ status_code=500,
302
+ detail=ERROR_MESSAGES.OLLAMA_NOT_FOUND,
303
+ )
304
+ else:
305
+ url = app.state.config.OLLAMA_BASE_URLS[url_idx]
306
+
307
+ r = None
308
+ try:
309
+ r = requests.request(method="GET", url=f"{url}/api/version")
310
+ r.raise_for_status()
311
+
312
+ return r.json()
313
+ except Exception as e:
314
+ log.exception(e)
315
+ error_detail = "Open WebUI: Server Connection Error"
316
+ if r is not None:
317
+ try:
318
+ res = r.json()
319
+ if "error" in res:
320
+ error_detail = f"Ollama: {res['error']}"
321
+ except Exception:
322
+ error_detail = f"Ollama: {e}"
323
+
324
+ raise HTTPException(
325
+ status_code=r.status_code if r else 500,
326
+ detail=error_detail,
327
+ )
328
+ else:
329
+ return {"version": False}
330
+
331
+
332
+ class ModelNameForm(BaseModel):
333
+ name: str
334
+
335
+
336
+ @app.post("/api/pull")
337
+ @app.post("/api/pull/{url_idx}")
338
+ async def pull_model(
339
+ form_data: ModelNameForm, url_idx: int = 0, user=Depends(get_admin_user)
340
+ ):
341
+ url = app.state.config.OLLAMA_BASE_URLS[url_idx]
342
+ log.info(f"url: {url}")
343
+
344
+ # Admin should be able to pull models from any source
345
+ payload = {**form_data.model_dump(exclude_none=True), "insecure": True}
346
+
347
+ return await post_streaming_url(f"{url}/api/pull", json.dumps(payload))
348
+
349
+
350
+ class PushModelForm(BaseModel):
351
+ name: str
352
+ insecure: Optional[bool] = None
353
+ stream: Optional[bool] = None
354
+
355
+
356
+ @app.delete("/api/push")
357
+ @app.delete("/api/push/{url_idx}")
358
+ async def push_model(
359
+ form_data: PushModelForm,
360
+ url_idx: Optional[int] = None,
361
+ user=Depends(get_admin_user),
362
+ ):
363
+ if url_idx is None:
364
+ if form_data.name in app.state.MODELS:
365
+ url_idx = app.state.MODELS[form_data.name]["urls"][0]
366
+ else:
367
+ raise HTTPException(
368
+ status_code=400,
369
+ detail=ERROR_MESSAGES.MODEL_NOT_FOUND(form_data.name),
370
+ )
371
+
372
+ url = app.state.config.OLLAMA_BASE_URLS[url_idx]
373
+ log.debug(f"url: {url}")
374
+
375
+ return await post_streaming_url(
376
+ f"{url}/api/push", form_data.model_dump_json(exclude_none=True).encode()
377
+ )
378
+
379
+
380
+ class CreateModelForm(BaseModel):
381
+ name: str
382
+ modelfile: Optional[str] = None
383
+ stream: Optional[bool] = None
384
+ path: Optional[str] = None
385
+
386
+
387
+ @app.post("/api/create")
388
+ @app.post("/api/create/{url_idx}")
389
+ async def create_model(
390
+ form_data: CreateModelForm, url_idx: int = 0, user=Depends(get_admin_user)
391
+ ):
392
+ log.debug(f"form_data: {form_data}")
393
+ url = app.state.config.OLLAMA_BASE_URLS[url_idx]
394
+ log.info(f"url: {url}")
395
+
396
+ return await post_streaming_url(
397
+ f"{url}/api/create", form_data.model_dump_json(exclude_none=True).encode()
398
+ )
399
+
400
+
401
+ class CopyModelForm(BaseModel):
402
+ source: str
403
+ destination: str
404
+
405
+
406
+ @app.post("/api/copy")
407
+ @app.post("/api/copy/{url_idx}")
408
+ async def copy_model(
409
+ form_data: CopyModelForm,
410
+ url_idx: Optional[int] = None,
411
+ user=Depends(get_admin_user),
412
+ ):
413
+ if url_idx is None:
414
+ if form_data.source in app.state.MODELS:
415
+ url_idx = app.state.MODELS[form_data.source]["urls"][0]
416
+ else:
417
+ raise HTTPException(
418
+ status_code=400,
419
+ detail=ERROR_MESSAGES.MODEL_NOT_FOUND(form_data.source),
420
+ )
421
+
422
+ url = app.state.config.OLLAMA_BASE_URLS[url_idx]
423
+ log.info(f"url: {url}")
424
+ r = requests.request(
425
+ method="POST",
426
+ url=f"{url}/api/copy",
427
+ headers={"Content-Type": "application/json"},
428
+ data=form_data.model_dump_json(exclude_none=True).encode(),
429
+ )
430
+
431
+ try:
432
+ r.raise_for_status()
433
+
434
+ log.debug(f"r.text: {r.text}")
435
+
436
+ return True
437
+ except Exception as e:
438
+ log.exception(e)
439
+ error_detail = "Open WebUI: Server Connection Error"
440
+ if r is not None:
441
+ try:
442
+ res = r.json()
443
+ if "error" in res:
444
+ error_detail = f"Ollama: {res['error']}"
445
+ except Exception:
446
+ error_detail = f"Ollama: {e}"
447
+
448
+ raise HTTPException(
449
+ status_code=r.status_code if r else 500,
450
+ detail=error_detail,
451
+ )
452
+
453
+
454
+ @app.delete("/api/delete")
455
+ @app.delete("/api/delete/{url_idx}")
456
+ async def delete_model(
457
+ form_data: ModelNameForm,
458
+ url_idx: Optional[int] = None,
459
+ user=Depends(get_admin_user),
460
+ ):
461
+ if url_idx is None:
462
+ if form_data.name in app.state.MODELS:
463
+ url_idx = app.state.MODELS[form_data.name]["urls"][0]
464
+ else:
465
+ raise HTTPException(
466
+ status_code=400,
467
+ detail=ERROR_MESSAGES.MODEL_NOT_FOUND(form_data.name),
468
+ )
469
+
470
+ url = app.state.config.OLLAMA_BASE_URLS[url_idx]
471
+ log.info(f"url: {url}")
472
+
473
+ r = requests.request(
474
+ method="DELETE",
475
+ url=f"{url}/api/delete",
476
+ headers={"Content-Type": "application/json"},
477
+ data=form_data.model_dump_json(exclude_none=True).encode(),
478
+ )
479
+ try:
480
+ r.raise_for_status()
481
+
482
+ log.debug(f"r.text: {r.text}")
483
+
484
+ return True
485
+ except Exception as e:
486
+ log.exception(e)
487
+ error_detail = "Open WebUI: Server Connection Error"
488
+ if r is not None:
489
+ try:
490
+ res = r.json()
491
+ if "error" in res:
492
+ error_detail = f"Ollama: {res['error']}"
493
+ except Exception:
494
+ error_detail = f"Ollama: {e}"
495
+
496
+ raise HTTPException(
497
+ status_code=r.status_code if r else 500,
498
+ detail=error_detail,
499
+ )
500
+
501
+
502
+ @app.post("/api/show")
503
+ async def show_model_info(form_data: ModelNameForm, user=Depends(get_verified_user)):
504
+ if form_data.name not in app.state.MODELS:
505
+ raise HTTPException(
506
+ status_code=400,
507
+ detail=ERROR_MESSAGES.MODEL_NOT_FOUND(form_data.name),
508
+ )
509
+
510
+ url_idx = random.choice(app.state.MODELS[form_data.name]["urls"])
511
+ url = app.state.config.OLLAMA_BASE_URLS[url_idx]
512
+ log.info(f"url: {url}")
513
+
514
+ r = requests.request(
515
+ method="POST",
516
+ url=f"{url}/api/show",
517
+ headers={"Content-Type": "application/json"},
518
+ data=form_data.model_dump_json(exclude_none=True).encode(),
519
+ )
520
+ try:
521
+ r.raise_for_status()
522
+
523
+ return r.json()
524
+ except Exception as e:
525
+ log.exception(e)
526
+ error_detail = "Open WebUI: Server Connection Error"
527
+ if r is not None:
528
+ try:
529
+ res = r.json()
530
+ if "error" in res:
531
+ error_detail = f"Ollama: {res['error']}"
532
+ except Exception:
533
+ error_detail = f"Ollama: {e}"
534
+
535
+ raise HTTPException(
536
+ status_code=r.status_code if r else 500,
537
+ detail=error_detail,
538
+ )
539
+
540
+
541
+ class GenerateEmbeddingsForm(BaseModel):
542
+ model: str
543
+ prompt: str
544
+ options: Optional[dict] = None
545
+ keep_alive: Optional[Union[int, str]] = None
546
+
547
+
548
+ class GenerateEmbedForm(BaseModel):
549
+ model: str
550
+ input: str
551
+ truncate: Optional[bool]
552
+ options: Optional[dict] = None
553
+ keep_alive: Optional[Union[int, str]] = None
554
+
555
+
556
+ @app.post("/api/embed")
557
+ @app.post("/api/embed/{url_idx}")
558
+ async def generate_embeddings(
559
+ form_data: GenerateEmbedForm,
560
+ url_idx: Optional[int] = None,
561
+ user=Depends(get_verified_user),
562
+ ):
563
+ if url_idx is None:
564
+ model = form_data.model
565
+
566
+ if ":" not in model:
567
+ model = f"{model}:latest"
568
+
569
+ if model in app.state.MODELS:
570
+ url_idx = random.choice(app.state.MODELS[model]["urls"])
571
+ else:
572
+ raise HTTPException(
573
+ status_code=400,
574
+ detail=ERROR_MESSAGES.MODEL_NOT_FOUND(form_data.model),
575
+ )
576
+
577
+ url = app.state.config.OLLAMA_BASE_URLS[url_idx]
578
+ log.info(f"url: {url}")
579
+
580
+ r = requests.request(
581
+ method="POST",
582
+ url=f"{url}/api/embed",
583
+ headers={"Content-Type": "application/json"},
584
+ data=form_data.model_dump_json(exclude_none=True).encode(),
585
+ )
586
+ try:
587
+ r.raise_for_status()
588
+
589
+ return r.json()
590
+ except Exception as e:
591
+ log.exception(e)
592
+ error_detail = "Open WebUI: Server Connection Error"
593
+ if r is not None:
594
+ try:
595
+ res = r.json()
596
+ if "error" in res:
597
+ error_detail = f"Ollama: {res['error']}"
598
+ except Exception:
599
+ error_detail = f"Ollama: {e}"
600
+
601
+ raise HTTPException(
602
+ status_code=r.status_code if r else 500,
603
+ detail=error_detail,
604
+ )
605
+
606
+
607
+ @app.post("/api/embeddings")
608
+ @app.post("/api/embeddings/{url_idx}")
609
+ async def generate_embeddings(
610
+ form_data: GenerateEmbeddingsForm,
611
+ url_idx: Optional[int] = None,
612
+ user=Depends(get_verified_user),
613
+ ):
614
+ if url_idx is None:
615
+ model = form_data.model
616
+
617
+ if ":" not in model:
618
+ model = f"{model}:latest"
619
+
620
+ if model in app.state.MODELS:
621
+ url_idx = random.choice(app.state.MODELS[model]["urls"])
622
+ else:
623
+ raise HTTPException(
624
+ status_code=400,
625
+ detail=ERROR_MESSAGES.MODEL_NOT_FOUND(form_data.model),
626
+ )
627
+
628
+ url = app.state.config.OLLAMA_BASE_URLS[url_idx]
629
+ log.info(f"url: {url}")
630
+
631
+ r = requests.request(
632
+ method="POST",
633
+ url=f"{url}/api/embeddings",
634
+ headers={"Content-Type": "application/json"},
635
+ data=form_data.model_dump_json(exclude_none=True).encode(),
636
+ )
637
+ try:
638
+ r.raise_for_status()
639
+
640
+ return r.json()
641
+ except Exception as e:
642
+ log.exception(e)
643
+ error_detail = "Open WebUI: Server Connection Error"
644
+ if r is not None:
645
+ try:
646
+ res = r.json()
647
+ if "error" in res:
648
+ error_detail = f"Ollama: {res['error']}"
649
+ except Exception:
650
+ error_detail = f"Ollama: {e}"
651
+
652
+ raise HTTPException(
653
+ status_code=r.status_code if r else 500,
654
+ detail=error_detail,
655
+ )
656
+
657
+
658
+ def generate_ollama_embeddings(
659
+ form_data: GenerateEmbeddingsForm,
660
+ url_idx: Optional[int] = None,
661
+ ):
662
+ log.info(f"generate_ollama_embeddings {form_data}")
663
+
664
+ if url_idx is None:
665
+ model = form_data.model
666
+
667
+ if ":" not in model:
668
+ model = f"{model}:latest"
669
+
670
+ if model in app.state.MODELS:
671
+ url_idx = random.choice(app.state.MODELS[model]["urls"])
672
+ else:
673
+ raise HTTPException(
674
+ status_code=400,
675
+ detail=ERROR_MESSAGES.MODEL_NOT_FOUND(form_data.model),
676
+ )
677
+
678
+ url = app.state.config.OLLAMA_BASE_URLS[url_idx]
679
+ log.info(f"url: {url}")
680
+
681
+ r = requests.request(
682
+ method="POST",
683
+ url=f"{url}/api/embeddings",
684
+ headers={"Content-Type": "application/json"},
685
+ data=form_data.model_dump_json(exclude_none=True).encode(),
686
+ )
687
+ try:
688
+ r.raise_for_status()
689
+
690
+ data = r.json()
691
+
692
+ log.info(f"generate_ollama_embeddings {data}")
693
+
694
+ if "embedding" in data:
695
+ return data["embedding"]
696
+ else:
697
+ raise Exception("Something went wrong :/")
698
+ except Exception as e:
699
+ log.exception(e)
700
+ error_detail = "Open WebUI: Server Connection Error"
701
+ if r is not None:
702
+ try:
703
+ res = r.json()
704
+ if "error" in res:
705
+ error_detail = f"Ollama: {res['error']}"
706
+ except Exception:
707
+ error_detail = f"Ollama: {e}"
708
+
709
+ raise Exception(error_detail)
710
+
711
+
712
+ class GenerateCompletionForm(BaseModel):
713
+ model: str
714
+ prompt: str
715
+ images: Optional[list[str]] = None
716
+ format: Optional[str] = None
717
+ options: Optional[dict] = None
718
+ system: Optional[str] = None
719
+ template: Optional[str] = None
720
+ context: Optional[str] = None
721
+ stream: Optional[bool] = True
722
+ raw: Optional[bool] = None
723
+ keep_alive: Optional[Union[int, str]] = None
724
+
725
+
726
+ @app.post("/api/generate")
727
+ @app.post("/api/generate/{url_idx}")
728
+ async def generate_completion(
729
+ form_data: GenerateCompletionForm,
730
+ url_idx: Optional[int] = None,
731
+ user=Depends(get_verified_user),
732
+ ):
733
+ if url_idx is None:
734
+ model = form_data.model
735
+
736
+ if ":" not in model:
737
+ model = f"{model}:latest"
738
+
739
+ if model in app.state.MODELS:
740
+ url_idx = random.choice(app.state.MODELS[model]["urls"])
741
+ else:
742
+ raise HTTPException(
743
+ status_code=400,
744
+ detail=ERROR_MESSAGES.MODEL_NOT_FOUND(form_data.model),
745
+ )
746
+
747
+ url = app.state.config.OLLAMA_BASE_URLS[url_idx]
748
+ log.info(f"url: {url}")
749
+
750
+ return await post_streaming_url(
751
+ f"{url}/api/generate", form_data.model_dump_json(exclude_none=True).encode()
752
+ )
753
+
754
+
755
+ class ChatMessage(BaseModel):
756
+ role: str
757
+ content: str
758
+ images: Optional[list[str]] = None
759
+
760
+
761
+ class GenerateChatCompletionForm(BaseModel):
762
+ model: str
763
+ messages: list[ChatMessage]
764
+ format: Optional[str] = None
765
+ options: Optional[dict] = None
766
+ template: Optional[str] = None
767
+ stream: Optional[bool] = None
768
+ keep_alive: Optional[Union[int, str]] = None
769
+
770
+
771
+ def get_ollama_url(url_idx: Optional[int], model: str):
772
+ if url_idx is None:
773
+ if model not in app.state.MODELS:
774
+ raise HTTPException(
775
+ status_code=400,
776
+ detail=ERROR_MESSAGES.MODEL_NOT_FOUND(model),
777
+ )
778
+ url_idx = random.choice(app.state.MODELS[model]["urls"])
779
+ url = app.state.config.OLLAMA_BASE_URLS[url_idx]
780
+ return url
781
+
782
+
783
+ @app.post("/api/chat")
784
+ @app.post("/api/chat/{url_idx}")
785
+ async def generate_chat_completion(
786
+ form_data: GenerateChatCompletionForm,
787
+ url_idx: Optional[int] = None,
788
+ user=Depends(get_verified_user),
789
+ ):
790
+ payload = {**form_data.model_dump(exclude_none=True)}
791
+ log.debug(f"{payload = }")
792
+
793
+ if "metadata" in payload:
794
+ del payload["metadata"]
795
+
796
+ model_id = form_data.model
797
+
798
+ if app.state.config.ENABLE_MODEL_FILTER:
799
+ if user.role == "user" and model_id not in app.state.config.MODEL_FILTER_LIST:
800
+ raise HTTPException(
801
+ status_code=403,
802
+ detail="Model not found",
803
+ )
804
+
805
+ model_info = Models.get_model_by_id(model_id)
806
+
807
+ if model_info:
808
+ if model_info.base_model_id:
809
+ payload["model"] = model_info.base_model_id
810
+
811
+ params = model_info.params.model_dump()
812
+
813
+ if params:
814
+ if payload.get("options") is None:
815
+ payload["options"] = {}
816
+
817
+ payload["options"] = apply_model_params_to_body_ollama(
818
+ params, payload["options"]
819
+ )
820
+ payload = apply_model_system_prompt_to_body(params, payload, user)
821
+
822
+ if ":" not in payload["model"]:
823
+ payload["model"] = f"{payload['model']}:latest"
824
+
825
+ url = get_ollama_url(url_idx, payload["model"])
826
+ log.info(f"url: {url}")
827
+ log.debug(payload)
828
+
829
+ return await post_streaming_url(
830
+ f"{url}/api/chat",
831
+ json.dumps(payload),
832
+ stream=form_data.stream,
833
+ content_type="application/x-ndjson",
834
+ )
835
+
836
+
837
+ # TODO: we should update this part once Ollama supports other types
838
+ class OpenAIChatMessageContent(BaseModel):
839
+ type: str
840
+ model_config = ConfigDict(extra="allow")
841
+
842
+
843
+ class OpenAIChatMessage(BaseModel):
844
+ role: str
845
+ content: Union[str, OpenAIChatMessageContent]
846
+
847
+ model_config = ConfigDict(extra="allow")
848
+
849
+
850
+ class OpenAIChatCompletionForm(BaseModel):
851
+ model: str
852
+ messages: list[OpenAIChatMessage]
853
+
854
+ model_config = ConfigDict(extra="allow")
855
+
856
+
857
+ @app.post("/v1/chat/completions")
858
+ @app.post("/v1/chat/completions/{url_idx}")
859
+ async def generate_openai_chat_completion(
860
+ form_data: dict,
861
+ url_idx: Optional[int] = None,
862
+ user=Depends(get_verified_user),
863
+ ):
864
+ completion_form = OpenAIChatCompletionForm(**form_data)
865
+ payload = {**completion_form.model_dump(exclude_none=True, exclude=["metadata"])}
866
+ if "metadata" in payload:
867
+ del payload["metadata"]
868
+
869
+ model_id = completion_form.model
870
+
871
+ if app.state.config.ENABLE_MODEL_FILTER:
872
+ if user.role == "user" and model_id not in app.state.config.MODEL_FILTER_LIST:
873
+ raise HTTPException(
874
+ status_code=403,
875
+ detail="Model not found",
876
+ )
877
+
878
+ model_info = Models.get_model_by_id(model_id)
879
+
880
+ if model_info:
881
+ if model_info.base_model_id:
882
+ payload["model"] = model_info.base_model_id
883
+
884
+ params = model_info.params.model_dump()
885
+
886
+ if params:
887
+ payload = apply_model_params_to_body_openai(params, payload)
888
+ payload = apply_model_system_prompt_to_body(params, payload, user)
889
+
890
+ if ":" not in payload["model"]:
891
+ payload["model"] = f"{payload['model']}:latest"
892
+
893
+ url = get_ollama_url(url_idx, payload["model"])
894
+ log.info(f"url: {url}")
895
+
896
+ return await post_streaming_url(
897
+ f"{url}/v1/chat/completions",
898
+ json.dumps(payload),
899
+ stream=payload.get("stream", False),
900
+ )
901
+
902
+
903
+ @app.get("/v1/models")
904
+ @app.get("/v1/models/{url_idx}")
905
+ async def get_openai_models(
906
+ url_idx: Optional[int] = None,
907
+ user=Depends(get_verified_user),
908
+ ):
909
+ if url_idx is None:
910
+ models = await get_all_models()
911
+
912
+ if app.state.config.ENABLE_MODEL_FILTER:
913
+ if user.role == "user":
914
+ models["models"] = list(
915
+ filter(
916
+ lambda model: model["name"]
917
+ in app.state.config.MODEL_FILTER_LIST,
918
+ models["models"],
919
+ )
920
+ )
921
+
922
+ return {
923
+ "data": [
924
+ {
925
+ "id": model["model"],
926
+ "object": "model",
927
+ "created": int(time.time()),
928
+ "owned_by": "openai",
929
+ }
930
+ for model in models["models"]
931
+ ],
932
+ "object": "list",
933
+ }
934
+
935
+ else:
936
+ url = app.state.config.OLLAMA_BASE_URLS[url_idx]
937
+ try:
938
+ r = requests.request(method="GET", url=f"{url}/api/tags")
939
+ r.raise_for_status()
940
+
941
+ models = r.json()
942
+
943
+ return {
944
+ "data": [
945
+ {
946
+ "id": model["model"],
947
+ "object": "model",
948
+ "created": int(time.time()),
949
+ "owned_by": "openai",
950
+ }
951
+ for model in models["models"]
952
+ ],
953
+ "object": "list",
954
+ }
955
+
956
+ except Exception as e:
957
+ log.exception(e)
958
+ error_detail = "Open WebUI: Server Connection Error"
959
+ if r is not None:
960
+ try:
961
+ res = r.json()
962
+ if "error" in res:
963
+ error_detail = f"Ollama: {res['error']}"
964
+ except Exception:
965
+ error_detail = f"Ollama: {e}"
966
+
967
+ raise HTTPException(
968
+ status_code=r.status_code if r else 500,
969
+ detail=error_detail,
970
+ )
971
+
972
+
973
+ class UrlForm(BaseModel):
974
+ url: str
975
+
976
+
977
+ class UploadBlobForm(BaseModel):
978
+ filename: str
979
+
980
+
981
+ def parse_huggingface_url(hf_url):
982
+ try:
983
+ # Parse the URL
984
+ parsed_url = urlparse(hf_url)
985
+
986
+ # Get the path and split it into components
987
+ path_components = parsed_url.path.split("/")
988
+
989
+ # Extract the desired output
990
+ model_file = path_components[-1]
991
+
992
+ return model_file
993
+ except ValueError:
994
+ return None
995
+
996
+
997
+ async def download_file_stream(
998
+ ollama_url, file_url, file_path, file_name, chunk_size=1024 * 1024
999
+ ):
1000
+ done = False
1001
+
1002
+ if os.path.exists(file_path):
1003
+ current_size = os.path.getsize(file_path)
1004
+ else:
1005
+ current_size = 0
1006
+
1007
+ headers = {"Range": f"bytes={current_size}-"} if current_size > 0 else {}
1008
+
1009
+ timeout = aiohttp.ClientTimeout(total=600) # Set the timeout
1010
+
1011
+ async with aiohttp.ClientSession(timeout=timeout, trust_env=True) as session:
1012
+ async with session.get(file_url, headers=headers) as response:
1013
+ total_size = int(response.headers.get("content-length", 0)) + current_size
1014
+
1015
+ with open(file_path, "ab+") as file:
1016
+ async for data in response.content.iter_chunked(chunk_size):
1017
+ current_size += len(data)
1018
+ file.write(data)
1019
+
1020
+ done = current_size == total_size
1021
+ progress = round((current_size / total_size) * 100, 2)
1022
+
1023
+ yield f'data: {{"progress": {progress}, "completed": {current_size}, "total": {total_size}}}\n\n'
1024
+
1025
+ if done:
1026
+ file.seek(0)
1027
+ hashed = calculate_sha256(file)
1028
+ file.seek(0)
1029
+
1030
+ url = f"{ollama_url}/api/blobs/sha256:{hashed}"
1031
+ response = requests.post(url, data=file)
1032
+
1033
+ if response.ok:
1034
+ res = {
1035
+ "done": done,
1036
+ "blob": f"sha256:{hashed}",
1037
+ "name": file_name,
1038
+ }
1039
+ os.remove(file_path)
1040
+
1041
+ yield f"data: {json.dumps(res)}\n\n"
1042
+ else:
1043
+ raise "Ollama: Could not create blob, Please try again."
1044
+
1045
+
1046
+ # url = "https://huggingface.co/TheBloke/stablelm-zephyr-3b-GGUF/resolve/main/stablelm-zephyr-3b.Q2_K.gguf"
1047
+ @app.post("/models/download")
1048
+ @app.post("/models/download/{url_idx}")
1049
+ async def download_model(
1050
+ form_data: UrlForm,
1051
+ url_idx: Optional[int] = None,
1052
+ user=Depends(get_admin_user),
1053
+ ):
1054
+ allowed_hosts = ["https://huggingface.co/", "https://github.com/"]
1055
+
1056
+ if not any(form_data.url.startswith(host) for host in allowed_hosts):
1057
+ raise HTTPException(
1058
+ status_code=400,
1059
+ detail="Invalid file_url. Only URLs from allowed hosts are permitted.",
1060
+ )
1061
+
1062
+ if url_idx is None:
1063
+ url_idx = 0
1064
+ url = app.state.config.OLLAMA_BASE_URLS[url_idx]
1065
+
1066
+ file_name = parse_huggingface_url(form_data.url)
1067
+
1068
+ if file_name:
1069
+ file_path = f"{UPLOAD_DIR}/{file_name}"
1070
+
1071
+ return StreamingResponse(
1072
+ download_file_stream(url, form_data.url, file_path, file_name),
1073
+ )
1074
+ else:
1075
+ return None
1076
+
1077
+
1078
+ @app.post("/models/upload")
1079
+ @app.post("/models/upload/{url_idx}")
1080
+ def upload_model(
1081
+ file: UploadFile = File(...),
1082
+ url_idx: Optional[int] = None,
1083
+ user=Depends(get_admin_user),
1084
+ ):
1085
+ if url_idx is None:
1086
+ url_idx = 0
1087
+ ollama_url = app.state.config.OLLAMA_BASE_URLS[url_idx]
1088
+
1089
+ file_path = f"{UPLOAD_DIR}/{file.filename}"
1090
+
1091
+ # Save file in chunks
1092
+ with open(file_path, "wb+") as f:
1093
+ for chunk in file.file:
1094
+ f.write(chunk)
1095
+
1096
+ def file_process_stream():
1097
+ nonlocal ollama_url
1098
+ total_size = os.path.getsize(file_path)
1099
+ chunk_size = 1024 * 1024
1100
+ try:
1101
+ with open(file_path, "rb") as f:
1102
+ total = 0
1103
+ done = False
1104
+
1105
+ while not done:
1106
+ chunk = f.read(chunk_size)
1107
+ if not chunk:
1108
+ done = True
1109
+ continue
1110
+
1111
+ total += len(chunk)
1112
+ progress = round((total / total_size) * 100, 2)
1113
+
1114
+ res = {
1115
+ "progress": progress,
1116
+ "total": total_size,
1117
+ "completed": total,
1118
+ }
1119
+ yield f"data: {json.dumps(res)}\n\n"
1120
+
1121
+ if done:
1122
+ f.seek(0)
1123
+ hashed = calculate_sha256(f)
1124
+ f.seek(0)
1125
+
1126
+ url = f"{ollama_url}/api/blobs/sha256:{hashed}"
1127
+ response = requests.post(url, data=f)
1128
+
1129
+ if response.ok:
1130
+ res = {
1131
+ "done": done,
1132
+ "blob": f"sha256:{hashed}",
1133
+ "name": file.filename,
1134
+ }
1135
+ os.remove(file_path)
1136
+ yield f"data: {json.dumps(res)}\n\n"
1137
+ else:
1138
+ raise Exception(
1139
+ "Ollama: Could not create blob, Please try again."
1140
+ )
1141
+
1142
+ except Exception as e:
1143
+ res = {"error": str(e)}
1144
+ yield f"data: {json.dumps(res)}\n\n"
1145
+
1146
+ return StreamingResponse(file_process_stream(), media_type="text/event-stream")
backend/open_webui/apps/openai/main.py ADDED
@@ -0,0 +1,553 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import asyncio
2
+ import hashlib
3
+ import json
4
+ import logging
5
+ from pathlib import Path
6
+ from typing import Literal, Optional, overload
7
+
8
+ import aiohttp
9
+ import requests
10
+ from open_webui.apps.webui.models.models import Models
11
+ from open_webui.config import (
12
+ CACHE_DIR,
13
+ CORS_ALLOW_ORIGIN,
14
+ ENABLE_MODEL_FILTER,
15
+ ENABLE_OPENAI_API,
16
+ MODEL_FILTER_LIST,
17
+ OPENAI_API_BASE_URLS,
18
+ OPENAI_API_KEYS,
19
+ AppConfig,
20
+ )
21
+ from open_webui.env import AIOHTTP_CLIENT_TIMEOUT
22
+
23
+ from open_webui.constants import ERROR_MESSAGES
24
+ from open_webui.env import SRC_LOG_LEVELS
25
+ from fastapi import Depends, FastAPI, HTTPException, Request
26
+ from fastapi.middleware.cors import CORSMiddleware
27
+ from fastapi.responses import FileResponse, StreamingResponse
28
+ from pydantic import BaseModel
29
+ from starlette.background import BackgroundTask
30
+
31
+ from open_webui.utils.payload import (
32
+ apply_model_params_to_body_openai,
33
+ apply_model_system_prompt_to_body,
34
+ )
35
+
36
+ from open_webui.utils.utils import get_admin_user, get_verified_user
37
+
38
+ log = logging.getLogger(__name__)
39
+ log.setLevel(SRC_LOG_LEVELS["OPENAI"])
40
+
41
+ app = FastAPI()
42
+ app.add_middleware(
43
+ CORSMiddleware,
44
+ allow_origins=CORS_ALLOW_ORIGIN,
45
+ allow_credentials=True,
46
+ allow_methods=["*"],
47
+ allow_headers=["*"],
48
+ )
49
+
50
+ app.state.config = AppConfig()
51
+
52
+ app.state.config.ENABLE_MODEL_FILTER = ENABLE_MODEL_FILTER
53
+ app.state.config.MODEL_FILTER_LIST = MODEL_FILTER_LIST
54
+
55
+ app.state.config.ENABLE_OPENAI_API = ENABLE_OPENAI_API
56
+ app.state.config.OPENAI_API_BASE_URLS = OPENAI_API_BASE_URLS
57
+ app.state.config.OPENAI_API_KEYS = OPENAI_API_KEYS
58
+
59
+ app.state.MODELS = {}
60
+
61
+
62
+ @app.middleware("http")
63
+ async def check_url(request: Request, call_next):
64
+ if len(app.state.MODELS) == 0:
65
+ await get_all_models()
66
+
67
+ response = await call_next(request)
68
+ return response
69
+
70
+
71
+ @app.get("/config")
72
+ async def get_config(user=Depends(get_admin_user)):
73
+ return {"ENABLE_OPENAI_API": app.state.config.ENABLE_OPENAI_API}
74
+
75
+
76
+ class OpenAIConfigForm(BaseModel):
77
+ enable_openai_api: Optional[bool] = None
78
+
79
+
80
+ @app.post("/config/update")
81
+ async def update_config(form_data: OpenAIConfigForm, user=Depends(get_admin_user)):
82
+ app.state.config.ENABLE_OPENAI_API = form_data.enable_openai_api
83
+ return {"ENABLE_OPENAI_API": app.state.config.ENABLE_OPENAI_API}
84
+
85
+
86
+ class UrlsUpdateForm(BaseModel):
87
+ urls: list[str]
88
+
89
+
90
+ class KeysUpdateForm(BaseModel):
91
+ keys: list[str]
92
+
93
+
94
+ @app.get("/urls")
95
+ async def get_openai_urls(user=Depends(get_admin_user)):
96
+ return {"OPENAI_API_BASE_URLS": app.state.config.OPENAI_API_BASE_URLS}
97
+
98
+
99
+ @app.post("/urls/update")
100
+ async def update_openai_urls(form_data: UrlsUpdateForm, user=Depends(get_admin_user)):
101
+ await get_all_models()
102
+ app.state.config.OPENAI_API_BASE_URLS = form_data.urls
103
+ return {"OPENAI_API_BASE_URLS": app.state.config.OPENAI_API_BASE_URLS}
104
+
105
+
106
+ @app.get("/keys")
107
+ async def get_openai_keys(user=Depends(get_admin_user)):
108
+ return {"OPENAI_API_KEYS": app.state.config.OPENAI_API_KEYS}
109
+
110
+
111
+ @app.post("/keys/update")
112
+ async def update_openai_key(form_data: KeysUpdateForm, user=Depends(get_admin_user)):
113
+ app.state.config.OPENAI_API_KEYS = form_data.keys
114
+ return {"OPENAI_API_KEYS": app.state.config.OPENAI_API_KEYS}
115
+
116
+
117
+ @app.post("/audio/speech")
118
+ async def speech(request: Request, user=Depends(get_verified_user)):
119
+ idx = None
120
+ try:
121
+ idx = app.state.config.OPENAI_API_BASE_URLS.index("https://api.openai.com/v1")
122
+ body = await request.body()
123
+ name = hashlib.sha256(body).hexdigest()
124
+
125
+ SPEECH_CACHE_DIR = Path(CACHE_DIR).joinpath("./audio/speech/")
126
+ SPEECH_CACHE_DIR.mkdir(parents=True, exist_ok=True)
127
+ file_path = SPEECH_CACHE_DIR.joinpath(f"{name}.mp3")
128
+ file_body_path = SPEECH_CACHE_DIR.joinpath(f"{name}.json")
129
+
130
+ # Check if the file already exists in the cache
131
+ if file_path.is_file():
132
+ return FileResponse(file_path)
133
+
134
+ headers = {}
135
+ headers["Authorization"] = f"Bearer {app.state.config.OPENAI_API_KEYS[idx]}"
136
+ headers["Content-Type"] = "application/json"
137
+ if "openrouter.ai" in app.state.config.OPENAI_API_BASE_URLS[idx]:
138
+ headers["HTTP-Referer"] = "https://openwebui.com/"
139
+ headers["X-Title"] = "Open WebUI"
140
+ r = None
141
+ try:
142
+ r = requests.post(
143
+ url=f"{app.state.config.OPENAI_API_BASE_URLS[idx]}/audio/speech",
144
+ data=body,
145
+ headers=headers,
146
+ stream=True,
147
+ )
148
+
149
+ r.raise_for_status()
150
+
151
+ # Save the streaming content to a file
152
+ with open(file_path, "wb") as f:
153
+ for chunk in r.iter_content(chunk_size=8192):
154
+ f.write(chunk)
155
+
156
+ with open(file_body_path, "w") as f:
157
+ json.dump(json.loads(body.decode("utf-8")), f)
158
+
159
+ # Return the saved file
160
+ return FileResponse(file_path)
161
+
162
+ except Exception as e:
163
+ log.exception(e)
164
+ error_detail = "Open WebUI: Server Connection Error"
165
+ if r is not None:
166
+ try:
167
+ res = r.json()
168
+ if "error" in res:
169
+ error_detail = f"External: {res['error']}"
170
+ except Exception:
171
+ error_detail = f"External: {e}"
172
+
173
+ raise HTTPException(
174
+ status_code=r.status_code if r else 500, detail=error_detail
175
+ )
176
+
177
+ except ValueError:
178
+ raise HTTPException(status_code=401, detail=ERROR_MESSAGES.OPENAI_NOT_FOUND)
179
+
180
+
181
+ async def fetch_url(url, key):
182
+ timeout = aiohttp.ClientTimeout(total=3)
183
+ try:
184
+ headers = {"Authorization": f"Bearer {key}"}
185
+ async with aiohttp.ClientSession(timeout=timeout, trust_env=True) as session:
186
+ async with session.get(url, headers=headers) as response:
187
+ return await response.json()
188
+ except Exception as e:
189
+ # Handle connection error here
190
+ log.error(f"Connection error: {e}")
191
+ return None
192
+
193
+
194
+ async def cleanup_response(
195
+ response: Optional[aiohttp.ClientResponse],
196
+ session: Optional[aiohttp.ClientSession],
197
+ ):
198
+ if response:
199
+ response.close()
200
+ if session:
201
+ await session.close()
202
+
203
+
204
+ def merge_models_lists(model_lists):
205
+ log.debug(f"merge_models_lists {model_lists}")
206
+ merged_list = []
207
+
208
+ for idx, models in enumerate(model_lists):
209
+ if models is not None and "error" not in models:
210
+ merged_list.extend(
211
+ [
212
+ {
213
+ **model,
214
+ "name": model.get("name", model["id"]),
215
+ "owned_by": "openai",
216
+ "openai": model,
217
+ "urlIdx": idx,
218
+ }
219
+ for model in models
220
+ if "api.openai.com"
221
+ not in app.state.config.OPENAI_API_BASE_URLS[idx]
222
+ or not any(
223
+ name in model["id"]
224
+ for name in [
225
+ "babbage",
226
+ "dall-e",
227
+ "davinci",
228
+ "embedding",
229
+ "tts",
230
+ "whisper",
231
+ ]
232
+ )
233
+ ]
234
+ )
235
+
236
+ return merged_list
237
+
238
+
239
+ def is_openai_api_disabled():
240
+ api_keys = app.state.config.OPENAI_API_KEYS
241
+ no_keys = len(api_keys) == 1 and api_keys[0] == ""
242
+ return no_keys or not app.state.config.ENABLE_OPENAI_API
243
+
244
+
245
+ async def get_all_models_raw() -> list:
246
+ if is_openai_api_disabled():
247
+ return []
248
+
249
+ # Check if API KEYS length is same than API URLS length
250
+ num_urls = len(app.state.config.OPENAI_API_BASE_URLS)
251
+ num_keys = len(app.state.config.OPENAI_API_KEYS)
252
+
253
+ if num_keys != num_urls:
254
+ # if there are more keys than urls, remove the extra keys
255
+ if num_keys > num_urls:
256
+ new_keys = app.state.config.OPENAI_API_KEYS[:num_urls]
257
+ app.state.config.OPENAI_API_KEYS = new_keys
258
+ # if there are more urls than keys, add empty keys
259
+ else:
260
+ app.state.config.OPENAI_API_KEYS += [""] * (num_urls - num_keys)
261
+
262
+ tasks = [
263
+ fetch_url(f"{url}/models", app.state.config.OPENAI_API_KEYS[idx])
264
+ for idx, url in enumerate(app.state.config.OPENAI_API_BASE_URLS)
265
+ ]
266
+
267
+ responses = await asyncio.gather(*tasks)
268
+ log.debug(f"get_all_models:responses() {responses}")
269
+
270
+ return responses
271
+
272
+
273
+ @overload
274
+ async def get_all_models(raw: Literal[True]) -> list: ...
275
+
276
+
277
+ @overload
278
+ async def get_all_models(raw: Literal[False] = False) -> dict[str, list]: ...
279
+
280
+
281
+ async def get_all_models(raw=False) -> dict[str, list] | list:
282
+ log.info("get_all_models()")
283
+ if is_openai_api_disabled():
284
+ return [] if raw else {"data": []}
285
+
286
+ responses = await get_all_models_raw()
287
+ if raw:
288
+ return responses
289
+
290
+ def extract_data(response):
291
+ if response and "data" in response:
292
+ return response["data"]
293
+ if isinstance(response, list):
294
+ return response
295
+ return None
296
+
297
+ models = {"data": merge_models_lists(map(extract_data, responses))}
298
+
299
+ log.debug(f"models: {models}")
300
+ app.state.MODELS = {model["id"]: model for model in models["data"]}
301
+
302
+ return models
303
+
304
+
305
+ @app.get("/models")
306
+ @app.get("/models/{url_idx}")
307
+ async def get_models(url_idx: Optional[int] = None, user=Depends(get_verified_user)):
308
+ if url_idx is None:
309
+ models = await get_all_models()
310
+ if app.state.config.ENABLE_MODEL_FILTER:
311
+ if user.role == "user":
312
+ models["data"] = list(
313
+ filter(
314
+ lambda model: model["id"] in app.state.config.MODEL_FILTER_LIST,
315
+ models["data"],
316
+ )
317
+ )
318
+ return models
319
+ return models
320
+ else:
321
+ url = app.state.config.OPENAI_API_BASE_URLS[url_idx]
322
+ key = app.state.config.OPENAI_API_KEYS[url_idx]
323
+
324
+ headers = {}
325
+ headers["Authorization"] = f"Bearer {key}"
326
+ headers["Content-Type"] = "application/json"
327
+
328
+ r = None
329
+
330
+ try:
331
+ r = requests.request(method="GET", url=f"{url}/models", headers=headers)
332
+ r.raise_for_status()
333
+
334
+ response_data = r.json()
335
+
336
+ if "api.openai.com" in url:
337
+ # Filter the response data
338
+ response_data["data"] = [
339
+ model
340
+ for model in response_data["data"]
341
+ if not any(
342
+ name in model["id"]
343
+ for name in [
344
+ "babbage",
345
+ "dall-e",
346
+ "davinci",
347
+ "embedding",
348
+ "tts",
349
+ "whisper",
350
+ ]
351
+ )
352
+ ]
353
+
354
+ return response_data
355
+ except Exception as e:
356
+ log.exception(e)
357
+ error_detail = "Open WebUI: Server Connection Error"
358
+ if r is not None:
359
+ try:
360
+ res = r.json()
361
+ if "error" in res:
362
+ error_detail = f"External: {res['error']}"
363
+ except Exception:
364
+ error_detail = f"External: {e}"
365
+
366
+ raise HTTPException(
367
+ status_code=r.status_code if r else 500,
368
+ detail=error_detail,
369
+ )
370
+
371
+
372
+ @app.post("/chat/completions")
373
+ @app.post("/chat/completions/{url_idx}")
374
+ async def generate_chat_completion(
375
+ form_data: dict,
376
+ url_idx: Optional[int] = None,
377
+ user=Depends(get_verified_user),
378
+ ):
379
+ idx = 0
380
+ payload = {**form_data}
381
+
382
+ if "metadata" in payload:
383
+ del payload["metadata"]
384
+
385
+ model_id = form_data.get("model")
386
+ model_info = Models.get_model_by_id(model_id)
387
+
388
+ if model_info:
389
+ if model_info.base_model_id:
390
+ payload["model"] = model_info.base_model_id
391
+
392
+ params = model_info.params.model_dump()
393
+ payload = apply_model_params_to_body_openai(params, payload)
394
+ payload = apply_model_system_prompt_to_body(params, payload, user)
395
+
396
+ model = app.state.MODELS[payload.get("model")]
397
+ idx = model["urlIdx"]
398
+
399
+ if "pipeline" in model and model.get("pipeline"):
400
+ payload["user"] = {
401
+ "name": user.name,
402
+ "id": user.id,
403
+ "email": user.email,
404
+ "role": user.role,
405
+ }
406
+
407
+ url = app.state.config.OPENAI_API_BASE_URLS[idx]
408
+ key = app.state.config.OPENAI_API_KEYS[idx]
409
+ is_o1 = payload["model"].lower().startswith("o1-")
410
+
411
+ # Change max_completion_tokens to max_tokens (Backward compatible)
412
+ if "api.openai.com" not in url and not is_o1:
413
+ if "max_completion_tokens" in payload:
414
+ # Remove "max_completion_tokens" from the payload
415
+ payload["max_tokens"] = payload["max_completion_tokens"]
416
+ del payload["max_completion_tokens"]
417
+ else:
418
+ if is_o1 and "max_tokens" in payload:
419
+ payload["max_completion_tokens"] = payload["max_tokens"]
420
+ del payload["max_tokens"]
421
+ if "max_tokens" in payload and "max_completion_tokens" in payload:
422
+ del payload["max_tokens"]
423
+
424
+ # Fix: O1 does not support the "system" parameter, Modify "system" to "user"
425
+ if is_o1 and payload["messages"][0]["role"] == "system":
426
+ payload["messages"][0]["role"] = "user"
427
+
428
+ # Convert the modified body back to JSON
429
+ payload = json.dumps(payload)
430
+
431
+ log.debug(payload)
432
+
433
+ headers = {}
434
+ headers["Authorization"] = f"Bearer {key}"
435
+ headers["Content-Type"] = "application/json"
436
+ if "openrouter.ai" in app.state.config.OPENAI_API_BASE_URLS[idx]:
437
+ headers["HTTP-Referer"] = "https://openwebui.com/"
438
+ headers["X-Title"] = "Open WebUI"
439
+
440
+ r = None
441
+ session = None
442
+ streaming = False
443
+ response = None
444
+
445
+ try:
446
+ session = aiohttp.ClientSession(
447
+ trust_env=True, timeout=aiohttp.ClientTimeout(total=AIOHTTP_CLIENT_TIMEOUT)
448
+ )
449
+ r = await session.request(
450
+ method="POST",
451
+ url=f"{url}/chat/completions",
452
+ data=payload,
453
+ headers=headers,
454
+ )
455
+
456
+ # Check if response is SSE
457
+ if "text/event-stream" in r.headers.get("Content-Type", ""):
458
+ streaming = True
459
+ return StreamingResponse(
460
+ r.content,
461
+ status_code=r.status,
462
+ headers=dict(r.headers),
463
+ background=BackgroundTask(
464
+ cleanup_response, response=r, session=session
465
+ ),
466
+ )
467
+ else:
468
+ try:
469
+ response = await r.json()
470
+ except Exception as e:
471
+ log.error(e)
472
+ response = await r.text()
473
+
474
+ r.raise_for_status()
475
+ return response
476
+ except Exception as e:
477
+ log.exception(e)
478
+ error_detail = "Open WebUI: Server Connection Error"
479
+ if isinstance(response, dict):
480
+ if "error" in response:
481
+ error_detail = f"{response['error']['message'] if 'message' in response['error'] else response['error']}"
482
+ elif isinstance(response, str):
483
+ error_detail = response
484
+
485
+ raise HTTPException(status_code=r.status if r else 500, detail=error_detail)
486
+ finally:
487
+ if not streaming and session:
488
+ if r:
489
+ r.close()
490
+ await session.close()
491
+
492
+
493
+ @app.api_route("/{path:path}", methods=["GET", "POST", "PUT", "DELETE"])
494
+ async def proxy(path: str, request: Request, user=Depends(get_verified_user)):
495
+ idx = 0
496
+
497
+ body = await request.body()
498
+
499
+ url = app.state.config.OPENAI_API_BASE_URLS[idx]
500
+ key = app.state.config.OPENAI_API_KEYS[idx]
501
+
502
+ target_url = f"{url}/{path}"
503
+
504
+ headers = {}
505
+ headers["Authorization"] = f"Bearer {key}"
506
+ headers["Content-Type"] = "application/json"
507
+
508
+ r = None
509
+ session = None
510
+ streaming = False
511
+
512
+ try:
513
+ session = aiohttp.ClientSession(trust_env=True)
514
+ r = await session.request(
515
+ method=request.method,
516
+ url=target_url,
517
+ data=body,
518
+ headers=headers,
519
+ )
520
+
521
+ r.raise_for_status()
522
+
523
+ # Check if response is SSE
524
+ if "text/event-stream" in r.headers.get("Content-Type", ""):
525
+ streaming = True
526
+ return StreamingResponse(
527
+ r.content,
528
+ status_code=r.status,
529
+ headers=dict(r.headers),
530
+ background=BackgroundTask(
531
+ cleanup_response, response=r, session=session
532
+ ),
533
+ )
534
+ else:
535
+ response_data = await r.json()
536
+ return response_data
537
+ except Exception as e:
538
+ log.exception(e)
539
+ error_detail = "Open WebUI: Server Connection Error"
540
+ if r is not None:
541
+ try:
542
+ res = await r.json()
543
+ print(res)
544
+ if "error" in res:
545
+ error_detail = f"External: {res['error']['message'] if 'message' in res['error'] else res['error']}"
546
+ except Exception:
547
+ error_detail = f"External: {e}"
548
+ raise HTTPException(status_code=r.status if r else 500, detail=error_detail)
549
+ finally:
550
+ if not streaming and session:
551
+ if r:
552
+ r.close()
553
+ await session.close()
backend/open_webui/apps/retrieval/loaders/main.py ADDED
@@ -0,0 +1,190 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import requests
2
+ import logging
3
+ import ftfy
4
+
5
+ from langchain_community.document_loaders import (
6
+ BSHTMLLoader,
7
+ CSVLoader,
8
+ Docx2txtLoader,
9
+ OutlookMessageLoader,
10
+ PyPDFLoader,
11
+ TextLoader,
12
+ UnstructuredEPubLoader,
13
+ UnstructuredExcelLoader,
14
+ UnstructuredMarkdownLoader,
15
+ UnstructuredPowerPointLoader,
16
+ UnstructuredRSTLoader,
17
+ UnstructuredXMLLoader,
18
+ YoutubeLoader,
19
+ )
20
+ from langchain_core.documents import Document
21
+ from open_webui.env import SRC_LOG_LEVELS
22
+
23
+ log = logging.getLogger(__name__)
24
+ log.setLevel(SRC_LOG_LEVELS["RAG"])
25
+
26
+ known_source_ext = [
27
+ "go",
28
+ "py",
29
+ "java",
30
+ "sh",
31
+ "bat",
32
+ "ps1",
33
+ "cmd",
34
+ "js",
35
+ "ts",
36
+ "css",
37
+ "cpp",
38
+ "hpp",
39
+ "h",
40
+ "c",
41
+ "cs",
42
+ "sql",
43
+ "log",
44
+ "ini",
45
+ "pl",
46
+ "pm",
47
+ "r",
48
+ "dart",
49
+ "dockerfile",
50
+ "env",
51
+ "php",
52
+ "hs",
53
+ "hsc",
54
+ "lua",
55
+ "nginxconf",
56
+ "conf",
57
+ "m",
58
+ "mm",
59
+ "plsql",
60
+ "perl",
61
+ "rb",
62
+ "rs",
63
+ "db2",
64
+ "scala",
65
+ "bash",
66
+ "swift",
67
+ "vue",
68
+ "svelte",
69
+ "msg",
70
+ "ex",
71
+ "exs",
72
+ "erl",
73
+ "tsx",
74
+ "jsx",
75
+ "hs",
76
+ "lhs",
77
+ ]
78
+
79
+
80
+ class TikaLoader:
81
+ def __init__(self, url, file_path, mime_type=None):
82
+ self.url = url
83
+ self.file_path = file_path
84
+ self.mime_type = mime_type
85
+
86
+ def load(self) -> list[Document]:
87
+ with open(self.file_path, "rb") as f:
88
+ data = f.read()
89
+
90
+ if self.mime_type is not None:
91
+ headers = {"Content-Type": self.mime_type}
92
+ else:
93
+ headers = {}
94
+
95
+ endpoint = self.url
96
+ if not endpoint.endswith("/"):
97
+ endpoint += "/"
98
+ endpoint += "tika/text"
99
+
100
+ r = requests.put(endpoint, data=data, headers=headers)
101
+
102
+ if r.ok:
103
+ raw_metadata = r.json()
104
+ text = raw_metadata.get("X-TIKA:content", "<No text content found>")
105
+
106
+ if "Content-Type" in raw_metadata:
107
+ headers["Content-Type"] = raw_metadata["Content-Type"]
108
+
109
+ log.info("Tika extracted text: %s", text)
110
+
111
+ return [Document(page_content=text, metadata=headers)]
112
+ else:
113
+ raise Exception(f"Error calling Tika: {r.reason}")
114
+
115
+
116
+ class Loader:
117
+ def __init__(self, engine: str = "", **kwargs):
118
+ self.engine = engine
119
+ self.kwargs = kwargs
120
+
121
+ def load(
122
+ self, filename: str, file_content_type: str, file_path: str
123
+ ) -> list[Document]:
124
+ loader = self._get_loader(filename, file_content_type, file_path)
125
+ docs = loader.load()
126
+
127
+ return [
128
+ Document(
129
+ page_content=ftfy.fix_text(doc.page_content), metadata=doc.metadata
130
+ )
131
+ for doc in docs
132
+ ]
133
+
134
+ def _get_loader(self, filename: str, file_content_type: str, file_path: str):
135
+ file_ext = filename.split(".")[-1].lower()
136
+
137
+ if self.engine == "tika" and self.kwargs.get("TIKA_SERVER_URL"):
138
+ if file_ext in known_source_ext or (
139
+ file_content_type and file_content_type.find("text/") >= 0
140
+ ):
141
+ loader = TextLoader(file_path, autodetect_encoding=True)
142
+ else:
143
+ loader = TikaLoader(
144
+ url=self.kwargs.get("TIKA_SERVER_URL"),
145
+ file_path=file_path,
146
+ mime_type=file_content_type,
147
+ )
148
+ else:
149
+ if file_ext == "pdf":
150
+ loader = PyPDFLoader(
151
+ file_path, extract_images=self.kwargs.get("PDF_EXTRACT_IMAGES")
152
+ )
153
+ elif file_ext == "csv":
154
+ loader = CSVLoader(file_path)
155
+ elif file_ext == "rst":
156
+ loader = UnstructuredRSTLoader(file_path, mode="elements")
157
+ elif file_ext == "xml":
158
+ loader = UnstructuredXMLLoader(file_path)
159
+ elif file_ext in ["htm", "html"]:
160
+ loader = BSHTMLLoader(file_path, open_encoding="unicode_escape")
161
+ elif file_ext == "md":
162
+ loader = UnstructuredMarkdownLoader(file_path)
163
+ elif file_content_type == "application/epub+zip":
164
+ loader = UnstructuredEPubLoader(file_path)
165
+ elif (
166
+ file_content_type
167
+ == "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
168
+ or file_ext == "docx"
169
+ ):
170
+ loader = Docx2txtLoader(file_path)
171
+ elif file_content_type in [
172
+ "application/vnd.ms-excel",
173
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
174
+ ] or file_ext in ["xls", "xlsx"]:
175
+ loader = UnstructuredExcelLoader(file_path)
176
+ elif file_content_type in [
177
+ "application/vnd.ms-powerpoint",
178
+ "application/vnd.openxmlformats-officedocument.presentationml.presentation",
179
+ ] or file_ext in ["ppt", "pptx"]:
180
+ loader = UnstructuredPowerPointLoader(file_path)
181
+ elif file_ext == "msg":
182
+ loader = OutlookMessageLoader(file_path)
183
+ elif file_ext in known_source_ext or (
184
+ file_content_type and file_content_type.find("text/") >= 0
185
+ ):
186
+ loader = TextLoader(file_path, autodetect_encoding=True)
187
+ else:
188
+ loader = TextLoader(file_path, autodetect_encoding=True)
189
+
190
+ return loader
backend/open_webui/apps/retrieval/main.py ADDED
@@ -0,0 +1,1317 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # TODO: Merge this with the webui_app and make it a single app
2
+
3
+ import json
4
+ import logging
5
+ import mimetypes
6
+ import os
7
+ import shutil
8
+
9
+ import uuid
10
+ from datetime import datetime
11
+ from pathlib import Path
12
+ from typing import Iterator, Optional, Sequence, Union
13
+
14
+ from fastapi import Depends, FastAPI, File, Form, HTTPException, UploadFile, status
15
+ from fastapi.middleware.cors import CORSMiddleware
16
+ from pydantic import BaseModel
17
+
18
+ from open_webui.apps.retrieval.vector.connector import VECTOR_DB_CLIENT
19
+
20
+ # Document loaders
21
+ from open_webui.apps.retrieval.loaders.main import Loader
22
+
23
+ # Web search engines
24
+ from open_webui.apps.retrieval.web.main import SearchResult
25
+ from open_webui.apps.retrieval.web.utils import get_web_loader
26
+ from open_webui.apps.retrieval.web.brave import search_brave
27
+ from open_webui.apps.retrieval.web.duckduckgo import search_duckduckgo
28
+ from open_webui.apps.retrieval.web.google_pse import search_google_pse
29
+ from open_webui.apps.retrieval.web.jina_search import search_jina
30
+ from open_webui.apps.retrieval.web.searchapi import search_searchapi
31
+ from open_webui.apps.retrieval.web.searxng import search_searxng
32
+ from open_webui.apps.retrieval.web.serper import search_serper
33
+ from open_webui.apps.retrieval.web.serply import search_serply
34
+ from open_webui.apps.retrieval.web.serpstack import search_serpstack
35
+ from open_webui.apps.retrieval.web.tavily import search_tavily
36
+
37
+
38
+ from open_webui.apps.retrieval.utils import (
39
+ get_embedding_function,
40
+ get_model_path,
41
+ query_collection,
42
+ query_collection_with_hybrid_search,
43
+ query_doc,
44
+ query_doc_with_hybrid_search,
45
+ )
46
+
47
+ from open_webui.apps.webui.models.files import Files
48
+ from open_webui.config import (
49
+ BRAVE_SEARCH_API_KEY,
50
+ CHUNK_OVERLAP,
51
+ CHUNK_SIZE,
52
+ CONTENT_EXTRACTION_ENGINE,
53
+ CORS_ALLOW_ORIGIN,
54
+ ENABLE_RAG_HYBRID_SEARCH,
55
+ ENABLE_RAG_LOCAL_WEB_FETCH,
56
+ ENABLE_RAG_WEB_LOADER_SSL_VERIFICATION,
57
+ ENABLE_RAG_WEB_SEARCH,
58
+ ENV,
59
+ GOOGLE_PSE_API_KEY,
60
+ GOOGLE_PSE_ENGINE_ID,
61
+ PDF_EXTRACT_IMAGES,
62
+ RAG_EMBEDDING_ENGINE,
63
+ RAG_EMBEDDING_MODEL,
64
+ RAG_EMBEDDING_MODEL_AUTO_UPDATE,
65
+ RAG_EMBEDDING_MODEL_TRUST_REMOTE_CODE,
66
+ RAG_EMBEDDING_OPENAI_BATCH_SIZE,
67
+ RAG_FILE_MAX_COUNT,
68
+ RAG_FILE_MAX_SIZE,
69
+ RAG_OPENAI_API_BASE_URL,
70
+ RAG_OPENAI_API_KEY,
71
+ RAG_RELEVANCE_THRESHOLD,
72
+ RAG_RERANKING_MODEL,
73
+ RAG_RERANKING_MODEL_AUTO_UPDATE,
74
+ RAG_RERANKING_MODEL_TRUST_REMOTE_CODE,
75
+ DEFAULT_RAG_TEMPLATE,
76
+ RAG_TEMPLATE,
77
+ RAG_TOP_K,
78
+ RAG_WEB_SEARCH_CONCURRENT_REQUESTS,
79
+ RAG_WEB_SEARCH_DOMAIN_FILTER_LIST,
80
+ RAG_WEB_SEARCH_ENGINE,
81
+ RAG_WEB_SEARCH_RESULT_COUNT,
82
+ SEARCHAPI_API_KEY,
83
+ SEARCHAPI_ENGINE,
84
+ SEARXNG_QUERY_URL,
85
+ SERPER_API_KEY,
86
+ SERPLY_API_KEY,
87
+ SERPSTACK_API_KEY,
88
+ SERPSTACK_HTTPS,
89
+ TAVILY_API_KEY,
90
+ TIKA_SERVER_URL,
91
+ UPLOAD_DIR,
92
+ YOUTUBE_LOADER_LANGUAGE,
93
+ AppConfig,
94
+ )
95
+ from open_webui.constants import ERROR_MESSAGES
96
+ from open_webui.env import SRC_LOG_LEVELS, DEVICE_TYPE, DOCKER
97
+ from open_webui.utils.misc import (
98
+ calculate_sha256,
99
+ calculate_sha256_string,
100
+ extract_folders_after_data_docs,
101
+ sanitize_filename,
102
+ )
103
+ from open_webui.utils.utils import get_admin_user, get_verified_user
104
+
105
+ from langchain.text_splitter import RecursiveCharacterTextSplitter
106
+ from langchain_community.document_loaders import (
107
+ YoutubeLoader,
108
+ )
109
+ from langchain_core.documents import Document
110
+
111
+
112
+ log = logging.getLogger(__name__)
113
+ log.setLevel(SRC_LOG_LEVELS["RAG"])
114
+
115
+ app = FastAPI()
116
+
117
+ app.state.config = AppConfig()
118
+
119
+ app.state.config.TOP_K = RAG_TOP_K
120
+ app.state.config.RELEVANCE_THRESHOLD = RAG_RELEVANCE_THRESHOLD
121
+ app.state.config.FILE_MAX_SIZE = RAG_FILE_MAX_SIZE
122
+ app.state.config.FILE_MAX_COUNT = RAG_FILE_MAX_COUNT
123
+
124
+ app.state.config.ENABLE_RAG_HYBRID_SEARCH = ENABLE_RAG_HYBRID_SEARCH
125
+ app.state.config.ENABLE_RAG_WEB_LOADER_SSL_VERIFICATION = (
126
+ ENABLE_RAG_WEB_LOADER_SSL_VERIFICATION
127
+ )
128
+
129
+ app.state.config.CONTENT_EXTRACTION_ENGINE = CONTENT_EXTRACTION_ENGINE
130
+ app.state.config.TIKA_SERVER_URL = TIKA_SERVER_URL
131
+
132
+ app.state.config.CHUNK_SIZE = CHUNK_SIZE
133
+ app.state.config.CHUNK_OVERLAP = CHUNK_OVERLAP
134
+
135
+ app.state.config.RAG_EMBEDDING_ENGINE = RAG_EMBEDDING_ENGINE
136
+ app.state.config.RAG_EMBEDDING_MODEL = RAG_EMBEDDING_MODEL
137
+ app.state.config.RAG_EMBEDDING_OPENAI_BATCH_SIZE = RAG_EMBEDDING_OPENAI_BATCH_SIZE
138
+ app.state.config.RAG_RERANKING_MODEL = RAG_RERANKING_MODEL
139
+ app.state.config.RAG_TEMPLATE = RAG_TEMPLATE
140
+
141
+ app.state.config.OPENAI_API_BASE_URL = RAG_OPENAI_API_BASE_URL
142
+ app.state.config.OPENAI_API_KEY = RAG_OPENAI_API_KEY
143
+
144
+ app.state.config.PDF_EXTRACT_IMAGES = PDF_EXTRACT_IMAGES
145
+
146
+ app.state.config.YOUTUBE_LOADER_LANGUAGE = YOUTUBE_LOADER_LANGUAGE
147
+ app.state.YOUTUBE_LOADER_TRANSLATION = None
148
+
149
+
150
+ app.state.config.ENABLE_RAG_WEB_SEARCH = ENABLE_RAG_WEB_SEARCH
151
+ app.state.config.RAG_WEB_SEARCH_ENGINE = RAG_WEB_SEARCH_ENGINE
152
+ app.state.config.RAG_WEB_SEARCH_DOMAIN_FILTER_LIST = RAG_WEB_SEARCH_DOMAIN_FILTER_LIST
153
+
154
+ app.state.config.SEARXNG_QUERY_URL = SEARXNG_QUERY_URL
155
+ app.state.config.GOOGLE_PSE_API_KEY = GOOGLE_PSE_API_KEY
156
+ app.state.config.GOOGLE_PSE_ENGINE_ID = GOOGLE_PSE_ENGINE_ID
157
+ app.state.config.BRAVE_SEARCH_API_KEY = BRAVE_SEARCH_API_KEY
158
+ app.state.config.SERPSTACK_API_KEY = SERPSTACK_API_KEY
159
+ app.state.config.SERPSTACK_HTTPS = SERPSTACK_HTTPS
160
+ app.state.config.SERPER_API_KEY = SERPER_API_KEY
161
+ app.state.config.SERPLY_API_KEY = SERPLY_API_KEY
162
+ app.state.config.TAVILY_API_KEY = TAVILY_API_KEY
163
+ app.state.config.SEARCHAPI_API_KEY = SEARCHAPI_API_KEY
164
+ app.state.config.SEARCHAPI_ENGINE = SEARCHAPI_ENGINE
165
+ app.state.config.RAG_WEB_SEARCH_RESULT_COUNT = RAG_WEB_SEARCH_RESULT_COUNT
166
+ app.state.config.RAG_WEB_SEARCH_CONCURRENT_REQUESTS = RAG_WEB_SEARCH_CONCURRENT_REQUESTS
167
+
168
+
169
+ def update_embedding_model(
170
+ embedding_model: str,
171
+ auto_update: bool = False,
172
+ ):
173
+ if embedding_model and app.state.config.RAG_EMBEDDING_ENGINE == "":
174
+ import sentence_transformers
175
+
176
+ app.state.sentence_transformer_ef = sentence_transformers.SentenceTransformer(
177
+ get_model_path(embedding_model, auto_update),
178
+ device=DEVICE_TYPE,
179
+ trust_remote_code=RAG_EMBEDDING_MODEL_TRUST_REMOTE_CODE,
180
+ )
181
+ else:
182
+ app.state.sentence_transformer_ef = None
183
+
184
+
185
+ def update_reranking_model(
186
+ reranking_model: str,
187
+ auto_update: bool = False,
188
+ ):
189
+ if reranking_model:
190
+ if any(model in reranking_model for model in ["jinaai/jina-colbert-v2"]):
191
+ try:
192
+ from open_webui.apps.retrieval.models.colbert import ColBERT
193
+
194
+ app.state.sentence_transformer_rf = ColBERT(
195
+ get_model_path(reranking_model, auto_update),
196
+ env="docker" if DOCKER else None,
197
+ )
198
+ except Exception as e:
199
+ log.error(f"ColBERT: {e}")
200
+ app.state.sentence_transformer_rf = None
201
+ app.state.config.ENABLE_RAG_HYBRID_SEARCH = False
202
+ else:
203
+ import sentence_transformers
204
+
205
+ try:
206
+ app.state.sentence_transformer_rf = sentence_transformers.CrossEncoder(
207
+ get_model_path(reranking_model, auto_update),
208
+ device=DEVICE_TYPE,
209
+ trust_remote_code=RAG_RERANKING_MODEL_TRUST_REMOTE_CODE,
210
+ )
211
+ except:
212
+ log.error("CrossEncoder error")
213
+ app.state.sentence_transformer_rf = None
214
+ app.state.config.ENABLE_RAG_HYBRID_SEARCH = False
215
+ else:
216
+ app.state.sentence_transformer_rf = None
217
+
218
+
219
+ update_embedding_model(
220
+ app.state.config.RAG_EMBEDDING_MODEL,
221
+ RAG_EMBEDDING_MODEL_AUTO_UPDATE,
222
+ )
223
+
224
+ update_reranking_model(
225
+ app.state.config.RAG_RERANKING_MODEL,
226
+ RAG_RERANKING_MODEL_AUTO_UPDATE,
227
+ )
228
+
229
+
230
+ app.state.EMBEDDING_FUNCTION = get_embedding_function(
231
+ app.state.config.RAG_EMBEDDING_ENGINE,
232
+ app.state.config.RAG_EMBEDDING_MODEL,
233
+ app.state.sentence_transformer_ef,
234
+ app.state.config.OPENAI_API_KEY,
235
+ app.state.config.OPENAI_API_BASE_URL,
236
+ app.state.config.RAG_EMBEDDING_OPENAI_BATCH_SIZE,
237
+ )
238
+
239
+ app.add_middleware(
240
+ CORSMiddleware,
241
+ allow_origins=CORS_ALLOW_ORIGIN,
242
+ allow_credentials=True,
243
+ allow_methods=["*"],
244
+ allow_headers=["*"],
245
+ )
246
+
247
+
248
+ class CollectionNameForm(BaseModel):
249
+ collection_name: Optional[str] = None
250
+
251
+
252
+ class ProcessUrlForm(CollectionNameForm):
253
+ url: str
254
+
255
+
256
+ class SearchForm(CollectionNameForm):
257
+ query: str
258
+
259
+
260
+ @app.get("/")
261
+ async def get_status():
262
+ return {
263
+ "status": True,
264
+ "chunk_size": app.state.config.CHUNK_SIZE,
265
+ "chunk_overlap": app.state.config.CHUNK_OVERLAP,
266
+ "template": app.state.config.RAG_TEMPLATE,
267
+ "embedding_engine": app.state.config.RAG_EMBEDDING_ENGINE,
268
+ "embedding_model": app.state.config.RAG_EMBEDDING_MODEL,
269
+ "reranking_model": app.state.config.RAG_RERANKING_MODEL,
270
+ "openai_batch_size": app.state.config.RAG_EMBEDDING_OPENAI_BATCH_SIZE,
271
+ }
272
+
273
+
274
+ @app.get("/embedding")
275
+ async def get_embedding_config(user=Depends(get_admin_user)):
276
+ return {
277
+ "status": True,
278
+ "embedding_engine": app.state.config.RAG_EMBEDDING_ENGINE,
279
+ "embedding_model": app.state.config.RAG_EMBEDDING_MODEL,
280
+ "openai_config": {
281
+ "url": app.state.config.OPENAI_API_BASE_URL,
282
+ "key": app.state.config.OPENAI_API_KEY,
283
+ "batch_size": app.state.config.RAG_EMBEDDING_OPENAI_BATCH_SIZE,
284
+ },
285
+ }
286
+
287
+
288
+ @app.get("/reranking")
289
+ async def get_reraanking_config(user=Depends(get_admin_user)):
290
+ return {
291
+ "status": True,
292
+ "reranking_model": app.state.config.RAG_RERANKING_MODEL,
293
+ }
294
+
295
+
296
+ class OpenAIConfigForm(BaseModel):
297
+ url: str
298
+ key: str
299
+ batch_size: Optional[int] = None
300
+
301
+
302
+ class EmbeddingModelUpdateForm(BaseModel):
303
+ openai_config: Optional[OpenAIConfigForm] = None
304
+ embedding_engine: str
305
+ embedding_model: str
306
+
307
+
308
+ @app.post("/embedding/update")
309
+ async def update_embedding_config(
310
+ form_data: EmbeddingModelUpdateForm, user=Depends(get_admin_user)
311
+ ):
312
+ log.info(
313
+ f"Updating embedding model: {app.state.config.RAG_EMBEDDING_MODEL} to {form_data.embedding_model}"
314
+ )
315
+ try:
316
+ app.state.config.RAG_EMBEDDING_ENGINE = form_data.embedding_engine
317
+ app.state.config.RAG_EMBEDDING_MODEL = form_data.embedding_model
318
+
319
+ if app.state.config.RAG_EMBEDDING_ENGINE in ["ollama", "openai"]:
320
+ if form_data.openai_config is not None:
321
+ app.state.config.OPENAI_API_BASE_URL = form_data.openai_config.url
322
+ app.state.config.OPENAI_API_KEY = form_data.openai_config.key
323
+ app.state.config.RAG_EMBEDDING_OPENAI_BATCH_SIZE = (
324
+ form_data.openai_config.batch_size
325
+ if form_data.openai_config.batch_size
326
+ else 1
327
+ )
328
+
329
+ update_embedding_model(app.state.config.RAG_EMBEDDING_MODEL)
330
+
331
+ app.state.EMBEDDING_FUNCTION = get_embedding_function(
332
+ app.state.config.RAG_EMBEDDING_ENGINE,
333
+ app.state.config.RAG_EMBEDDING_MODEL,
334
+ app.state.sentence_transformer_ef,
335
+ app.state.config.OPENAI_API_KEY,
336
+ app.state.config.OPENAI_API_BASE_URL,
337
+ app.state.config.RAG_EMBEDDING_OPENAI_BATCH_SIZE,
338
+ )
339
+
340
+ return {
341
+ "status": True,
342
+ "embedding_engine": app.state.config.RAG_EMBEDDING_ENGINE,
343
+ "embedding_model": app.state.config.RAG_EMBEDDING_MODEL,
344
+ "openai_config": {
345
+ "url": app.state.config.OPENAI_API_BASE_URL,
346
+ "key": app.state.config.OPENAI_API_KEY,
347
+ "batch_size": app.state.config.RAG_EMBEDDING_OPENAI_BATCH_SIZE,
348
+ },
349
+ }
350
+ except Exception as e:
351
+ log.exception(f"Problem updating embedding model: {e}")
352
+ raise HTTPException(
353
+ status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
354
+ detail=ERROR_MESSAGES.DEFAULT(e),
355
+ )
356
+
357
+
358
+ class RerankingModelUpdateForm(BaseModel):
359
+ reranking_model: str
360
+
361
+
362
+ @app.post("/reranking/update")
363
+ async def update_reranking_config(
364
+ form_data: RerankingModelUpdateForm, user=Depends(get_admin_user)
365
+ ):
366
+ log.info(
367
+ f"Updating reranking model: {app.state.config.RAG_RERANKING_MODEL} to {form_data.reranking_model}"
368
+ )
369
+ try:
370
+ app.state.config.RAG_RERANKING_MODEL = form_data.reranking_model
371
+
372
+ update_reranking_model(app.state.config.RAG_RERANKING_MODEL, True)
373
+
374
+ return {
375
+ "status": True,
376
+ "reranking_model": app.state.config.RAG_RERANKING_MODEL,
377
+ }
378
+ except Exception as e:
379
+ log.exception(f"Problem updating reranking model: {e}")
380
+ raise HTTPException(
381
+ status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
382
+ detail=ERROR_MESSAGES.DEFAULT(e),
383
+ )
384
+
385
+
386
+ @app.get("/config")
387
+ async def get_rag_config(user=Depends(get_admin_user)):
388
+ return {
389
+ "status": True,
390
+ "pdf_extract_images": app.state.config.PDF_EXTRACT_IMAGES,
391
+ "file": {
392
+ "max_size": app.state.config.FILE_MAX_SIZE,
393
+ "max_count": app.state.config.FILE_MAX_COUNT,
394
+ },
395
+ "content_extraction": {
396
+ "engine": app.state.config.CONTENT_EXTRACTION_ENGINE,
397
+ "tika_server_url": app.state.config.TIKA_SERVER_URL,
398
+ },
399
+ "chunk": {
400
+ "chunk_size": app.state.config.CHUNK_SIZE,
401
+ "chunk_overlap": app.state.config.CHUNK_OVERLAP,
402
+ },
403
+ "youtube": {
404
+ "language": app.state.config.YOUTUBE_LOADER_LANGUAGE,
405
+ "translation": app.state.YOUTUBE_LOADER_TRANSLATION,
406
+ },
407
+ "web": {
408
+ "ssl_verification": app.state.config.ENABLE_RAG_WEB_LOADER_SSL_VERIFICATION,
409
+ "search": {
410
+ "enabled": app.state.config.ENABLE_RAG_WEB_SEARCH,
411
+ "engine": app.state.config.RAG_WEB_SEARCH_ENGINE,
412
+ "searxng_query_url": app.state.config.SEARXNG_QUERY_URL,
413
+ "google_pse_api_key": app.state.config.GOOGLE_PSE_API_KEY,
414
+ "google_pse_engine_id": app.state.config.GOOGLE_PSE_ENGINE_ID,
415
+ "brave_search_api_key": app.state.config.BRAVE_SEARCH_API_KEY,
416
+ "serpstack_api_key": app.state.config.SERPSTACK_API_KEY,
417
+ "serpstack_https": app.state.config.SERPSTACK_HTTPS,
418
+ "serper_api_key": app.state.config.SERPER_API_KEY,
419
+ "serply_api_key": app.state.config.SERPLY_API_KEY,
420
+ "tavily_api_key": app.state.config.TAVILY_API_KEY,
421
+ "searchapi_api_key": app.state.config.SEARCHAPI_API_KEY,
422
+ "seaarchapi_engine": app.state.config.SEARCHAPI_ENGINE,
423
+ "result_count": app.state.config.RAG_WEB_SEARCH_RESULT_COUNT,
424
+ "concurrent_requests": app.state.config.RAG_WEB_SEARCH_CONCURRENT_REQUESTS,
425
+ },
426
+ },
427
+ }
428
+
429
+
430
+ class FileConfig(BaseModel):
431
+ max_size: Optional[int] = None
432
+ max_count: Optional[int] = None
433
+
434
+
435
+ class ContentExtractionConfig(BaseModel):
436
+ engine: str = ""
437
+ tika_server_url: Optional[str] = None
438
+
439
+
440
+ class ChunkParamUpdateForm(BaseModel):
441
+ chunk_size: int
442
+ chunk_overlap: int
443
+
444
+
445
+ class YoutubeLoaderConfig(BaseModel):
446
+ language: list[str]
447
+ translation: Optional[str] = None
448
+
449
+
450
+ class WebSearchConfig(BaseModel):
451
+ enabled: bool
452
+ engine: Optional[str] = None
453
+ searxng_query_url: Optional[str] = None
454
+ google_pse_api_key: Optional[str] = None
455
+ google_pse_engine_id: Optional[str] = None
456
+ brave_search_api_key: Optional[str] = None
457
+ serpstack_api_key: Optional[str] = None
458
+ serpstack_https: Optional[bool] = None
459
+ serper_api_key: Optional[str] = None
460
+ serply_api_key: Optional[str] = None
461
+ tavily_api_key: Optional[str] = None
462
+ searchapi_api_key: Optional[str] = None
463
+ searchapi_engine: Optional[str] = None
464
+ result_count: Optional[int] = None
465
+ concurrent_requests: Optional[int] = None
466
+
467
+
468
+ class WebConfig(BaseModel):
469
+ search: WebSearchConfig
470
+ web_loader_ssl_verification: Optional[bool] = None
471
+
472
+
473
+ class ConfigUpdateForm(BaseModel):
474
+ pdf_extract_images: Optional[bool] = None
475
+ file: Optional[FileConfig] = None
476
+ content_extraction: Optional[ContentExtractionConfig] = None
477
+ chunk: Optional[ChunkParamUpdateForm] = None
478
+ youtube: Optional[YoutubeLoaderConfig] = None
479
+ web: Optional[WebConfig] = None
480
+
481
+
482
+ @app.post("/config/update")
483
+ async def update_rag_config(form_data: ConfigUpdateForm, user=Depends(get_admin_user)):
484
+ app.state.config.PDF_EXTRACT_IMAGES = (
485
+ form_data.pdf_extract_images
486
+ if form_data.pdf_extract_images is not None
487
+ else app.state.config.PDF_EXTRACT_IMAGES
488
+ )
489
+
490
+ if form_data.file is not None:
491
+ app.state.config.FILE_MAX_SIZE = form_data.file.max_size
492
+ app.state.config.FILE_MAX_COUNT = form_data.file.max_count
493
+
494
+ if form_data.content_extraction is not None:
495
+ log.info(f"Updating text settings: {form_data.content_extraction}")
496
+ app.state.config.CONTENT_EXTRACTION_ENGINE = form_data.content_extraction.engine
497
+ app.state.config.TIKA_SERVER_URL = form_data.content_extraction.tika_server_url
498
+
499
+ if form_data.chunk is not None:
500
+ app.state.config.CHUNK_SIZE = form_data.chunk.chunk_size
501
+ app.state.config.CHUNK_OVERLAP = form_data.chunk.chunk_overlap
502
+
503
+ if form_data.youtube is not None:
504
+ app.state.config.YOUTUBE_LOADER_LANGUAGE = form_data.youtube.language
505
+ app.state.YOUTUBE_LOADER_TRANSLATION = form_data.youtube.translation
506
+
507
+ if form_data.web is not None:
508
+ app.state.config.ENABLE_RAG_WEB_LOADER_SSL_VERIFICATION = (
509
+ form_data.web.web_loader_ssl_verification
510
+ )
511
+
512
+ app.state.config.ENABLE_RAG_WEB_SEARCH = form_data.web.search.enabled
513
+ app.state.config.RAG_WEB_SEARCH_ENGINE = form_data.web.search.engine
514
+ app.state.config.SEARXNG_QUERY_URL = form_data.web.search.searxng_query_url
515
+ app.state.config.GOOGLE_PSE_API_KEY = form_data.web.search.google_pse_api_key
516
+ app.state.config.GOOGLE_PSE_ENGINE_ID = (
517
+ form_data.web.search.google_pse_engine_id
518
+ )
519
+ app.state.config.BRAVE_SEARCH_API_KEY = (
520
+ form_data.web.search.brave_search_api_key
521
+ )
522
+ app.state.config.SERPSTACK_API_KEY = form_data.web.search.serpstack_api_key
523
+ app.state.config.SERPSTACK_HTTPS = form_data.web.search.serpstack_https
524
+ app.state.config.SERPER_API_KEY = form_data.web.search.serper_api_key
525
+ app.state.config.SERPLY_API_KEY = form_data.web.search.serply_api_key
526
+ app.state.config.TAVILY_API_KEY = form_data.web.search.tavily_api_key
527
+ app.state.config.SEARCHAPI_API_KEY = form_data.web.search.searchapi_api_key
528
+ app.state.config.SEARCHAPI_ENGINE = form_data.web.search.searchapi_engine
529
+ app.state.config.RAG_WEB_SEARCH_RESULT_COUNT = form_data.web.search.result_count
530
+ app.state.config.RAG_WEB_SEARCH_CONCURRENT_REQUESTS = (
531
+ form_data.web.search.concurrent_requests
532
+ )
533
+
534
+ return {
535
+ "status": True,
536
+ "pdf_extract_images": app.state.config.PDF_EXTRACT_IMAGES,
537
+ "file": {
538
+ "max_size": app.state.config.FILE_MAX_SIZE,
539
+ "max_count": app.state.config.FILE_MAX_COUNT,
540
+ },
541
+ "content_extraction": {
542
+ "engine": app.state.config.CONTENT_EXTRACTION_ENGINE,
543
+ "tika_server_url": app.state.config.TIKA_SERVER_URL,
544
+ },
545
+ "chunk": {
546
+ "chunk_size": app.state.config.CHUNK_SIZE,
547
+ "chunk_overlap": app.state.config.CHUNK_OVERLAP,
548
+ },
549
+ "youtube": {
550
+ "language": app.state.config.YOUTUBE_LOADER_LANGUAGE,
551
+ "translation": app.state.YOUTUBE_LOADER_TRANSLATION,
552
+ },
553
+ "web": {
554
+ "ssl_verification": app.state.config.ENABLE_RAG_WEB_LOADER_SSL_VERIFICATION,
555
+ "search": {
556
+ "enabled": app.state.config.ENABLE_RAG_WEB_SEARCH,
557
+ "engine": app.state.config.RAG_WEB_SEARCH_ENGINE,
558
+ "searxng_query_url": app.state.config.SEARXNG_QUERY_URL,
559
+ "google_pse_api_key": app.state.config.GOOGLE_PSE_API_KEY,
560
+ "google_pse_engine_id": app.state.config.GOOGLE_PSE_ENGINE_ID,
561
+ "brave_search_api_key": app.state.config.BRAVE_SEARCH_API_KEY,
562
+ "serpstack_api_key": app.state.config.SERPSTACK_API_KEY,
563
+ "serpstack_https": app.state.config.SERPSTACK_HTTPS,
564
+ "serper_api_key": app.state.config.SERPER_API_KEY,
565
+ "serply_api_key": app.state.config.SERPLY_API_KEY,
566
+ "serachapi_api_key": app.state.config.SEARCHAPI_API_KEY,
567
+ "searchapi_engine": app.state.config.SEARCHAPI_ENGINE,
568
+ "tavily_api_key": app.state.config.TAVILY_API_KEY,
569
+ "result_count": app.state.config.RAG_WEB_SEARCH_RESULT_COUNT,
570
+ "concurrent_requests": app.state.config.RAG_WEB_SEARCH_CONCURRENT_REQUESTS,
571
+ },
572
+ },
573
+ }
574
+
575
+
576
+ @app.get("/template")
577
+ async def get_rag_template(user=Depends(get_verified_user)):
578
+ return {
579
+ "status": True,
580
+ "template": app.state.config.RAG_TEMPLATE,
581
+ }
582
+
583
+
584
+ @app.get("/query/settings")
585
+ async def get_query_settings(user=Depends(get_admin_user)):
586
+ return {
587
+ "status": True,
588
+ "template": app.state.config.RAG_TEMPLATE,
589
+ "k": app.state.config.TOP_K,
590
+ "r": app.state.config.RELEVANCE_THRESHOLD,
591
+ "hybrid": app.state.config.ENABLE_RAG_HYBRID_SEARCH,
592
+ }
593
+
594
+
595
+ class QuerySettingsForm(BaseModel):
596
+ k: Optional[int] = None
597
+ r: Optional[float] = None
598
+ template: Optional[str] = None
599
+ hybrid: Optional[bool] = None
600
+
601
+
602
+ @app.post("/query/settings/update")
603
+ async def update_query_settings(
604
+ form_data: QuerySettingsForm, user=Depends(get_admin_user)
605
+ ):
606
+ app.state.config.RAG_TEMPLATE = (
607
+ form_data.template if form_data.template != "" else DEFAULT_RAG_TEMPLATE
608
+ )
609
+ app.state.config.TOP_K = form_data.k if form_data.k else 4
610
+ app.state.config.RELEVANCE_THRESHOLD = form_data.r if form_data.r else 0.0
611
+ app.state.config.ENABLE_RAG_HYBRID_SEARCH = (
612
+ form_data.hybrid if form_data.hybrid else False
613
+ )
614
+
615
+ return {
616
+ "status": True,
617
+ "template": app.state.config.RAG_TEMPLATE,
618
+ "k": app.state.config.TOP_K,
619
+ "r": app.state.config.RELEVANCE_THRESHOLD,
620
+ "hybrid": app.state.config.ENABLE_RAG_HYBRID_SEARCH,
621
+ }
622
+
623
+
624
+ ####################################
625
+ #
626
+ # Document process and retrieval
627
+ #
628
+ ####################################
629
+
630
+
631
+ def save_docs_to_vector_db(
632
+ docs,
633
+ collection_name,
634
+ metadata: Optional[dict] = None,
635
+ overwrite: bool = False,
636
+ split: bool = True,
637
+ add: bool = False,
638
+ ) -> bool:
639
+ log.info(f"save_docs_to_vector_db {docs} {collection_name}")
640
+
641
+ # Check if entries with the same hash (metadata.hash) already exist
642
+ if metadata and "hash" in metadata:
643
+ result = VECTOR_DB_CLIENT.query(
644
+ collection_name=collection_name,
645
+ filter={"hash": metadata["hash"]},
646
+ )
647
+
648
+ if result:
649
+ existing_doc_ids = result.ids[0]
650
+ if existing_doc_ids:
651
+ log.info(f"Document with hash {metadata['hash']} already exists")
652
+ raise ValueError(ERROR_MESSAGES.DUPLICATE_CONTENT)
653
+
654
+ if split:
655
+ text_splitter = RecursiveCharacterTextSplitter(
656
+ chunk_size=app.state.config.CHUNK_SIZE,
657
+ chunk_overlap=app.state.config.CHUNK_OVERLAP,
658
+ add_start_index=True,
659
+ )
660
+ docs = text_splitter.split_documents(docs)
661
+
662
+ if len(docs) == 0:
663
+ raise ValueError(ERROR_MESSAGES.EMPTY_CONTENT)
664
+
665
+ texts = [doc.page_content for doc in docs]
666
+ metadatas = [{**doc.metadata, **(metadata if metadata else {})} for doc in docs]
667
+
668
+ # ChromaDB does not like datetime formats
669
+ # for meta-data so convert them to string.
670
+ for metadata in metadatas:
671
+ for key, value in metadata.items():
672
+ if isinstance(value, datetime):
673
+ metadata[key] = str(value)
674
+
675
+ try:
676
+ if VECTOR_DB_CLIENT.has_collection(collection_name=collection_name):
677
+ log.info(f"collection {collection_name} already exists")
678
+
679
+ if overwrite:
680
+ VECTOR_DB_CLIENT.delete_collection(collection_name=collection_name)
681
+ log.info(f"deleting existing collection {collection_name}")
682
+
683
+ if add is False:
684
+ return True
685
+
686
+ log.info(f"adding to collection {collection_name}")
687
+ embedding_function = get_embedding_function(
688
+ app.state.config.RAG_EMBEDDING_ENGINE,
689
+ app.state.config.RAG_EMBEDDING_MODEL,
690
+ app.state.sentence_transformer_ef,
691
+ app.state.config.OPENAI_API_KEY,
692
+ app.state.config.OPENAI_API_BASE_URL,
693
+ app.state.config.RAG_EMBEDDING_OPENAI_BATCH_SIZE,
694
+ )
695
+
696
+ embeddings = embedding_function(
697
+ list(map(lambda x: x.replace("\n", " "), texts))
698
+ )
699
+
700
+ items = [
701
+ {
702
+ "id": str(uuid.uuid4()),
703
+ "text": text,
704
+ "vector": embeddings[idx],
705
+ "metadata": metadatas[idx],
706
+ }
707
+ for idx, text in enumerate(texts)
708
+ ]
709
+
710
+ VECTOR_DB_CLIENT.insert(
711
+ collection_name=collection_name,
712
+ items=items,
713
+ )
714
+
715
+ return True
716
+ except Exception as e:
717
+ log.exception(e)
718
+ return False
719
+
720
+
721
+ class ProcessFileForm(BaseModel):
722
+ file_id: str
723
+ content: Optional[str] = None
724
+ collection_name: Optional[str] = None
725
+
726
+
727
+ @app.post("/process/file")
728
+ def process_file(
729
+ form_data: ProcessFileForm,
730
+ user=Depends(get_verified_user),
731
+ ):
732
+ try:
733
+ file = Files.get_file_by_id(form_data.file_id)
734
+
735
+ collection_name = form_data.collection_name
736
+
737
+ if collection_name is None:
738
+ collection_name = f"file-{file.id}"
739
+
740
+ if form_data.content:
741
+ # Update the content in the file
742
+ # Usage: /files/{file_id}/data/content/update
743
+
744
+ VECTOR_DB_CLIENT.delete(
745
+ collection_name=f"file-{file.id}",
746
+ filter={"file_id": file.id},
747
+ )
748
+
749
+ docs = [
750
+ Document(
751
+ page_content=form_data.content,
752
+ metadata={
753
+ "name": file.meta.get("name", file.filename),
754
+ "created_by": file.user_id,
755
+ "file_id": file.id,
756
+ **file.meta,
757
+ },
758
+ )
759
+ ]
760
+
761
+ text_content = form_data.content
762
+ elif form_data.collection_name:
763
+ # Check if the file has already been processed and save the content
764
+ # Usage: /knowledge/{id}/file/add, /knowledge/{id}/file/update
765
+
766
+ result = VECTOR_DB_CLIENT.query(
767
+ collection_name=f"file-{file.id}", filter={"file_id": file.id}
768
+ )
769
+
770
+ if len(result.ids[0]) > 0:
771
+ docs = [
772
+ Document(
773
+ page_content=result.documents[0][idx],
774
+ metadata=result.metadatas[0][idx],
775
+ )
776
+ for idx, id in enumerate(result.ids[0])
777
+ ]
778
+ else:
779
+ docs = [
780
+ Document(
781
+ page_content=file.data.get("content", ""),
782
+ metadata={
783
+ "name": file.meta.get("name", file.filename),
784
+ "created_by": file.user_id,
785
+ "file_id": file.id,
786
+ **file.meta,
787
+ },
788
+ )
789
+ ]
790
+
791
+ text_content = file.data.get("content", "")
792
+ else:
793
+ # Process the file and save the content
794
+ # Usage: /files/
795
+
796
+ file_path = file.meta.get("path", None)
797
+ if file_path:
798
+ loader = Loader(
799
+ engine=app.state.config.CONTENT_EXTRACTION_ENGINE,
800
+ TIKA_SERVER_URL=app.state.config.TIKA_SERVER_URL,
801
+ PDF_EXTRACT_IMAGES=app.state.config.PDF_EXTRACT_IMAGES,
802
+ )
803
+
804
+ docs = loader.load(
805
+ file.filename, file.meta.get("content_type"), file_path
806
+ )
807
+ else:
808
+ docs = [
809
+ Document(
810
+ page_content=file.data.get("content", ""),
811
+ metadata={
812
+ "name": file.filename,
813
+ "created_by": file.user_id,
814
+ "file_id": file.id,
815
+ **file.meta,
816
+ },
817
+ )
818
+ ]
819
+
820
+ text_content = " ".join([doc.page_content for doc in docs])
821
+
822
+ log.debug(f"text_content: {text_content}")
823
+ Files.update_file_data_by_id(
824
+ file.id,
825
+ {"content": text_content},
826
+ )
827
+
828
+ hash = calculate_sha256_string(text_content)
829
+ Files.update_file_hash_by_id(file.id, hash)
830
+
831
+ try:
832
+ result = save_docs_to_vector_db(
833
+ docs=docs,
834
+ collection_name=collection_name,
835
+ metadata={
836
+ "file_id": file.id,
837
+ "name": file.meta.get("name", file.filename),
838
+ "hash": hash,
839
+ },
840
+ add=(True if form_data.collection_name else False),
841
+ )
842
+
843
+ if result:
844
+ Files.update_file_metadata_by_id(
845
+ file.id,
846
+ {
847
+ "collection_name": collection_name,
848
+ },
849
+ )
850
+
851
+ return {
852
+ "status": True,
853
+ "collection_name": collection_name,
854
+ "filename": file.meta.get("name", file.filename),
855
+ "content": text_content,
856
+ }
857
+ except Exception as e:
858
+ raise e
859
+ except Exception as e:
860
+ log.exception(e)
861
+ if "No pandoc was found" in str(e):
862
+ raise HTTPException(
863
+ status_code=status.HTTP_400_BAD_REQUEST,
864
+ detail=ERROR_MESSAGES.PANDOC_NOT_INSTALLED,
865
+ )
866
+ else:
867
+ raise HTTPException(
868
+ status_code=status.HTTP_400_BAD_REQUEST,
869
+ detail=str(e),
870
+ )
871
+
872
+
873
+ class ProcessTextForm(BaseModel):
874
+ name: str
875
+ content: str
876
+ collection_name: Optional[str] = None
877
+
878
+
879
+ @app.post("/process/text")
880
+ def process_text(
881
+ form_data: ProcessTextForm,
882
+ user=Depends(get_verified_user),
883
+ ):
884
+ collection_name = form_data.collection_name
885
+ if collection_name is None:
886
+ collection_name = calculate_sha256_string(form_data.content)
887
+
888
+ docs = [
889
+ Document(
890
+ page_content=form_data.content,
891
+ metadata={"name": form_data.name, "created_by": user.id},
892
+ )
893
+ ]
894
+ text_content = form_data.content
895
+ log.debug(f"text_content: {text_content}")
896
+
897
+ result = save_docs_to_vector_db(docs, collection_name)
898
+
899
+ if result:
900
+ return {
901
+ "status": True,
902
+ "collection_name": collection_name,
903
+ "content": text_content,
904
+ }
905
+ else:
906
+ raise HTTPException(
907
+ status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
908
+ detail=ERROR_MESSAGES.DEFAULT(),
909
+ )
910
+
911
+
912
+ @app.post("/process/youtube")
913
+ def process_youtube_video(form_data: ProcessUrlForm, user=Depends(get_verified_user)):
914
+ try:
915
+ collection_name = form_data.collection_name
916
+ if not collection_name:
917
+ collection_name = calculate_sha256_string(form_data.url)[:63]
918
+
919
+ loader = YoutubeLoader.from_youtube_url(
920
+ form_data.url,
921
+ add_video_info=True,
922
+ language=app.state.config.YOUTUBE_LOADER_LANGUAGE,
923
+ translation=app.state.YOUTUBE_LOADER_TRANSLATION,
924
+ )
925
+ docs = loader.load()
926
+ content = " ".join([doc.page_content for doc in docs])
927
+ log.debug(f"text_content: {content}")
928
+ save_docs_to_vector_db(docs, collection_name, overwrite=True)
929
+
930
+ return {
931
+ "status": True,
932
+ "collection_name": collection_name,
933
+ "filename": form_data.url,
934
+ "file": {
935
+ "data": {
936
+ "content": content,
937
+ },
938
+ "meta": {
939
+ "name": form_data.url,
940
+ },
941
+ },
942
+ }
943
+ except Exception as e:
944
+ log.exception(e)
945
+ raise HTTPException(
946
+ status_code=status.HTTP_400_BAD_REQUEST,
947
+ detail=ERROR_MESSAGES.DEFAULT(e),
948
+ )
949
+
950
+
951
+ @app.post("/process/web")
952
+ def process_web(form_data: ProcessUrlForm, user=Depends(get_verified_user)):
953
+ try:
954
+ collection_name = form_data.collection_name
955
+ if not collection_name:
956
+ collection_name = calculate_sha256_string(form_data.url)[:63]
957
+
958
+ loader = get_web_loader(
959
+ form_data.url,
960
+ verify_ssl=app.state.config.ENABLE_RAG_WEB_LOADER_SSL_VERIFICATION,
961
+ requests_per_second=app.state.config.RAG_WEB_SEARCH_CONCURRENT_REQUESTS,
962
+ )
963
+ docs = loader.load()
964
+ content = " ".join([doc.page_content for doc in docs])
965
+ log.debug(f"text_content: {content}")
966
+ save_docs_to_vector_db(docs, collection_name, overwrite=True)
967
+
968
+ return {
969
+ "status": True,
970
+ "collection_name": collection_name,
971
+ "filename": form_data.url,
972
+ "file": {
973
+ "data": {
974
+ "content": content,
975
+ },
976
+ "meta": {
977
+ "name": form_data.url,
978
+ },
979
+ },
980
+ }
981
+ except Exception as e:
982
+ log.exception(e)
983
+ raise HTTPException(
984
+ status_code=status.HTTP_400_BAD_REQUEST,
985
+ detail=ERROR_MESSAGES.DEFAULT(e),
986
+ )
987
+
988
+
989
+ def search_web(engine: str, query: str) -> list[SearchResult]:
990
+ """Search the web using a search engine and return the results as a list of SearchResult objects.
991
+ Will look for a search engine API key in environment variables in the following order:
992
+ - SEARXNG_QUERY_URL
993
+ - GOOGLE_PSE_API_KEY + GOOGLE_PSE_ENGINE_ID
994
+ - BRAVE_SEARCH_API_KEY
995
+ - SERPSTACK_API_KEY
996
+ - SERPER_API_KEY
997
+ - SERPLY_API_KEY
998
+ - TAVILY_API_KEY
999
+ - SEARCHAPI_API_KEY + SEARCHAPI_ENGINE (by default `google`)
1000
+ Args:
1001
+ query (str): The query to search for
1002
+ """
1003
+
1004
+ # TODO: add playwright to search the web
1005
+ if engine == "searxng":
1006
+ if app.state.config.SEARXNG_QUERY_URL:
1007
+ return search_searxng(
1008
+ app.state.config.SEARXNG_QUERY_URL,
1009
+ query,
1010
+ app.state.config.RAG_WEB_SEARCH_RESULT_COUNT,
1011
+ app.state.config.RAG_WEB_SEARCH_DOMAIN_FILTER_LIST,
1012
+ )
1013
+ else:
1014
+ raise Exception("No SEARXNG_QUERY_URL found in environment variables")
1015
+ elif engine == "google_pse":
1016
+ if (
1017
+ app.state.config.GOOGLE_PSE_API_KEY
1018
+ and app.state.config.GOOGLE_PSE_ENGINE_ID
1019
+ ):
1020
+ return search_google_pse(
1021
+ app.state.config.GOOGLE_PSE_API_KEY,
1022
+ app.state.config.GOOGLE_PSE_ENGINE_ID,
1023
+ query,
1024
+ app.state.config.RAG_WEB_SEARCH_RESULT_COUNT,
1025
+ app.state.config.RAG_WEB_SEARCH_DOMAIN_FILTER_LIST,
1026
+ )
1027
+ else:
1028
+ raise Exception(
1029
+ "No GOOGLE_PSE_API_KEY or GOOGLE_PSE_ENGINE_ID found in environment variables"
1030
+ )
1031
+ elif engine == "brave":
1032
+ if app.state.config.BRAVE_SEARCH_API_KEY:
1033
+ return search_brave(
1034
+ app.state.config.BRAVE_SEARCH_API_KEY,
1035
+ query,
1036
+ app.state.config.RAG_WEB_SEARCH_RESULT_COUNT,
1037
+ app.state.config.RAG_WEB_SEARCH_DOMAIN_FILTER_LIST,
1038
+ )
1039
+ else:
1040
+ raise Exception("No BRAVE_SEARCH_API_KEY found in environment variables")
1041
+ elif engine == "serpstack":
1042
+ if app.state.config.SERPSTACK_API_KEY:
1043
+ return search_serpstack(
1044
+ app.state.config.SERPSTACK_API_KEY,
1045
+ query,
1046
+ app.state.config.RAG_WEB_SEARCH_RESULT_COUNT,
1047
+ app.state.config.RAG_WEB_SEARCH_DOMAIN_FILTER_LIST,
1048
+ https_enabled=app.state.config.SERPSTACK_HTTPS,
1049
+ )
1050
+ else:
1051
+ raise Exception("No SERPSTACK_API_KEY found in environment variables")
1052
+ elif engine == "serper":
1053
+ if app.state.config.SERPER_API_KEY:
1054
+ return search_serper(
1055
+ app.state.config.SERPER_API_KEY,
1056
+ query,
1057
+ app.state.config.RAG_WEB_SEARCH_RESULT_COUNT,
1058
+ app.state.config.RAG_WEB_SEARCH_DOMAIN_FILTER_LIST,
1059
+ )
1060
+ else:
1061
+ raise Exception("No SERPER_API_KEY found in environment variables")
1062
+ elif engine == "serply":
1063
+ if app.state.config.SERPLY_API_KEY:
1064
+ return search_serply(
1065
+ app.state.config.SERPLY_API_KEY,
1066
+ query,
1067
+ app.state.config.RAG_WEB_SEARCH_RESULT_COUNT,
1068
+ app.state.config.RAG_WEB_SEARCH_DOMAIN_FILTER_LIST,
1069
+ )
1070
+ else:
1071
+ raise Exception("No SERPLY_API_KEY found in environment variables")
1072
+ elif engine == "duckduckgo":
1073
+ return search_duckduckgo(
1074
+ query,
1075
+ app.state.config.RAG_WEB_SEARCH_RESULT_COUNT,
1076
+ app.state.config.RAG_WEB_SEARCH_DOMAIN_FILTER_LIST,
1077
+ )
1078
+ elif engine == "tavily":
1079
+ if app.state.config.TAVILY_API_KEY:
1080
+ return search_tavily(
1081
+ app.state.config.TAVILY_API_KEY,
1082
+ query,
1083
+ app.state.config.RAG_WEB_SEARCH_RESULT_COUNT,
1084
+ )
1085
+ else:
1086
+ raise Exception("No TAVILY_API_KEY found in environment variables")
1087
+ elif engine == "searchapi":
1088
+ if app.state.config.SEARCHAPI_API_KEY:
1089
+ return search_searchapi(
1090
+ app.state.config.SEARCHAPI_API_KEY,
1091
+ app.state.config.SEARCHAPI_ENGINE,
1092
+ query,
1093
+ app.state.config.RAG_WEB_SEARCH_RESULT_COUNT,
1094
+ app.state.config.RAG_WEB_SEARCH_DOMAIN_FILTER_LIST,
1095
+ )
1096
+ else:
1097
+ raise Exception("No SEARCHAPI_API_KEY found in environment variables")
1098
+ elif engine == "jina":
1099
+ return search_jina(query, app.state.config.RAG_WEB_SEARCH_RESULT_COUNT)
1100
+ else:
1101
+ raise Exception("No search engine API key found in environment variables")
1102
+
1103
+
1104
+ @app.post("/process/web/search")
1105
+ def process_web_search(form_data: SearchForm, user=Depends(get_verified_user)):
1106
+ try:
1107
+ logging.info(
1108
+ f"trying to web search with {app.state.config.RAG_WEB_SEARCH_ENGINE, form_data.query}"
1109
+ )
1110
+ web_results = search_web(
1111
+ app.state.config.RAG_WEB_SEARCH_ENGINE, form_data.query
1112
+ )
1113
+ except Exception as e:
1114
+ log.exception(e)
1115
+
1116
+ print(e)
1117
+ raise HTTPException(
1118
+ status_code=status.HTTP_400_BAD_REQUEST,
1119
+ detail=ERROR_MESSAGES.WEB_SEARCH_ERROR(e),
1120
+ )
1121
+
1122
+ try:
1123
+ collection_name = form_data.collection_name
1124
+ if collection_name == "":
1125
+ collection_name = calculate_sha256_string(form_data.query)[:63]
1126
+
1127
+ urls = [result.link for result in web_results]
1128
+
1129
+ loader = get_web_loader(urls)
1130
+ docs = loader.load()
1131
+
1132
+ save_docs_to_vector_db(docs, collection_name, overwrite=True)
1133
+
1134
+ return {
1135
+ "status": True,
1136
+ "collection_name": collection_name,
1137
+ "filenames": urls,
1138
+ }
1139
+ except Exception as e:
1140
+ log.exception(e)
1141
+ raise HTTPException(
1142
+ status_code=status.HTTP_400_BAD_REQUEST,
1143
+ detail=ERROR_MESSAGES.DEFAULT(e),
1144
+ )
1145
+
1146
+
1147
+ class QueryDocForm(BaseModel):
1148
+ collection_name: str
1149
+ query: str
1150
+ k: Optional[int] = None
1151
+ r: Optional[float] = None
1152
+ hybrid: Optional[bool] = None
1153
+
1154
+
1155
+ @app.post("/query/doc")
1156
+ def query_doc_handler(
1157
+ form_data: QueryDocForm,
1158
+ user=Depends(get_verified_user),
1159
+ ):
1160
+ try:
1161
+ if app.state.config.ENABLE_RAG_HYBRID_SEARCH:
1162
+ return query_doc_with_hybrid_search(
1163
+ collection_name=form_data.collection_name,
1164
+ query=form_data.query,
1165
+ embedding_function=app.state.EMBEDDING_FUNCTION,
1166
+ k=form_data.k if form_data.k else app.state.config.TOP_K,
1167
+ reranking_function=app.state.sentence_transformer_rf,
1168
+ r=(
1169
+ form_data.r if form_data.r else app.state.config.RELEVANCE_THRESHOLD
1170
+ ),
1171
+ )
1172
+ else:
1173
+ return query_doc(
1174
+ collection_name=form_data.collection_name,
1175
+ query=form_data.query,
1176
+ embedding_function=app.state.EMBEDDING_FUNCTION,
1177
+ k=form_data.k if form_data.k else app.state.config.TOP_K,
1178
+ )
1179
+ except Exception as e:
1180
+ log.exception(e)
1181
+ raise HTTPException(
1182
+ status_code=status.HTTP_400_BAD_REQUEST,
1183
+ detail=ERROR_MESSAGES.DEFAULT(e),
1184
+ )
1185
+
1186
+
1187
+ class QueryCollectionsForm(BaseModel):
1188
+ collection_names: list[str]
1189
+ query: str
1190
+ k: Optional[int] = None
1191
+ r: Optional[float] = None
1192
+ hybrid: Optional[bool] = None
1193
+
1194
+
1195
+ @app.post("/query/collection")
1196
+ def query_collection_handler(
1197
+ form_data: QueryCollectionsForm,
1198
+ user=Depends(get_verified_user),
1199
+ ):
1200
+ try:
1201
+ if app.state.config.ENABLE_RAG_HYBRID_SEARCH:
1202
+ return query_collection_with_hybrid_search(
1203
+ collection_names=form_data.collection_names,
1204
+ query=form_data.query,
1205
+ embedding_function=app.state.EMBEDDING_FUNCTION,
1206
+ k=form_data.k if form_data.k else app.state.config.TOP_K,
1207
+ reranking_function=app.state.sentence_transformer_rf,
1208
+ r=(
1209
+ form_data.r if form_data.r else app.state.config.RELEVANCE_THRESHOLD
1210
+ ),
1211
+ )
1212
+ else:
1213
+ return query_collection(
1214
+ collection_names=form_data.collection_names,
1215
+ query=form_data.query,
1216
+ embedding_function=app.state.EMBEDDING_FUNCTION,
1217
+ k=form_data.k if form_data.k else app.state.config.TOP_K,
1218
+ )
1219
+
1220
+ except Exception as e:
1221
+ log.exception(e)
1222
+ raise HTTPException(
1223
+ status_code=status.HTTP_400_BAD_REQUEST,
1224
+ detail=ERROR_MESSAGES.DEFAULT(e),
1225
+ )
1226
+
1227
+
1228
+ ####################################
1229
+ #
1230
+ # Vector DB operations
1231
+ #
1232
+ ####################################
1233
+
1234
+
1235
+ class DeleteForm(BaseModel):
1236
+ collection_name: str
1237
+ file_id: str
1238
+
1239
+
1240
+ @app.post("/delete")
1241
+ def delete_entries_from_collection(form_data: DeleteForm, user=Depends(get_admin_user)):
1242
+ try:
1243
+ if VECTOR_DB_CLIENT.has_collection(collection_name=form_data.collection_name):
1244
+ file = Files.get_file_by_id(form_data.file_id)
1245
+ hash = file.hash
1246
+
1247
+ VECTOR_DB_CLIENT.delete(
1248
+ collection_name=form_data.collection_name,
1249
+ metadata={"hash": hash},
1250
+ )
1251
+ return {"status": True}
1252
+ else:
1253
+ return {"status": False}
1254
+ except Exception as e:
1255
+ log.exception(e)
1256
+ return {"status": False}
1257
+
1258
+
1259
+ @app.post("/reset/db")
1260
+ def reset_vector_db(user=Depends(get_admin_user)):
1261
+ VECTOR_DB_CLIENT.reset()
1262
+
1263
+
1264
+ @app.post("/reset/uploads")
1265
+ def reset_upload_dir(user=Depends(get_admin_user)) -> bool:
1266
+ folder = f"{UPLOAD_DIR}"
1267
+ try:
1268
+ # Check if the directory exists
1269
+ if os.path.exists(folder):
1270
+ # Iterate over all the files and directories in the specified directory
1271
+ for filename in os.listdir(folder):
1272
+ file_path = os.path.join(folder, filename)
1273
+ try:
1274
+ if os.path.isfile(file_path) or os.path.islink(file_path):
1275
+ os.unlink(file_path) # Remove the file or link
1276
+ elif os.path.isdir(file_path):
1277
+ shutil.rmtree(file_path) # Remove the directory
1278
+ except Exception as e:
1279
+ print(f"Failed to delete {file_path}. Reason: {e}")
1280
+ else:
1281
+ print(f"The directory {folder} does not exist")
1282
+ except Exception as e:
1283
+ print(f"Failed to process the directory {folder}. Reason: {e}")
1284
+
1285
+ return True
1286
+
1287
+
1288
+ @app.post("/reset")
1289
+ def reset(user=Depends(get_admin_user)) -> bool:
1290
+ folder = f"{UPLOAD_DIR}"
1291
+ for filename in os.listdir(folder):
1292
+ file_path = os.path.join(folder, filename)
1293
+ try:
1294
+ if os.path.isfile(file_path) or os.path.islink(file_path):
1295
+ os.unlink(file_path)
1296
+ elif os.path.isdir(file_path):
1297
+ shutil.rmtree(file_path)
1298
+ except Exception as e:
1299
+ log.error("Failed to delete %s. Reason: %s" % (file_path, e))
1300
+
1301
+ try:
1302
+ VECTOR_DB_CLIENT.reset()
1303
+ except Exception as e:
1304
+ log.exception(e)
1305
+
1306
+ return True
1307
+
1308
+
1309
+ if ENV == "dev":
1310
+
1311
+ @app.get("/ef")
1312
+ async def get_embeddings():
1313
+ return {"result": app.state.EMBEDDING_FUNCTION("hello world")}
1314
+
1315
+ @app.get("/ef/{text}")
1316
+ async def get_embeddings_text(text: str):
1317
+ return {"result": app.state.EMBEDDING_FUNCTION(text)}
backend/open_webui/apps/retrieval/models/colbert.py ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import torch
3
+ import numpy as np
4
+ from colbert.infra import ColBERTConfig
5
+ from colbert.modeling.checkpoint import Checkpoint
6
+
7
+
8
+ class ColBERT:
9
+ def __init__(self, name, **kwargs) -> None:
10
+ print("ColBERT: Loading model", name)
11
+ self.device = "cuda" if torch.cuda.is_available() else "cpu"
12
+
13
+ DOCKER = kwargs.get("env") == "docker"
14
+ if DOCKER:
15
+ # This is a workaround for the issue with the docker container
16
+ # where the torch extension is not loaded properly
17
+ # and the following error is thrown:
18
+ # /root/.cache/torch_extensions/py311_cpu/segmented_maxsim_cpp/segmented_maxsim_cpp.so: cannot open shared object file: No such file or directory
19
+
20
+ lock_file = (
21
+ "/root/.cache/torch_extensions/py311_cpu/segmented_maxsim_cpp/lock"
22
+ )
23
+ if os.path.exists(lock_file):
24
+ os.remove(lock_file)
25
+
26
+ self.ckpt = Checkpoint(
27
+ name,
28
+ colbert_config=ColBERTConfig(model_name=name),
29
+ ).to(self.device)
30
+ pass
31
+
32
+ def calculate_similarity_scores(self, query_embeddings, document_embeddings):
33
+
34
+ query_embeddings = query_embeddings.to(self.device)
35
+ document_embeddings = document_embeddings.to(self.device)
36
+
37
+ # Validate dimensions to ensure compatibility
38
+ if query_embeddings.dim() != 3:
39
+ raise ValueError(
40
+ f"Expected query embeddings to have 3 dimensions, but got {query_embeddings.dim()}."
41
+ )
42
+ if document_embeddings.dim() != 3:
43
+ raise ValueError(
44
+ f"Expected document embeddings to have 3 dimensions, but got {document_embeddings.dim()}."
45
+ )
46
+ if query_embeddings.size(0) not in [1, document_embeddings.size(0)]:
47
+ raise ValueError(
48
+ "There should be either one query or queries equal to the number of documents."
49
+ )
50
+
51
+ # Transpose the query embeddings to align for matrix multiplication
52
+ transposed_query_embeddings = query_embeddings.permute(0, 2, 1)
53
+ # Compute similarity scores using batch matrix multiplication
54
+ computed_scores = torch.matmul(document_embeddings, transposed_query_embeddings)
55
+ # Apply max pooling to extract the highest semantic similarity across each document's sequence
56
+ maximum_scores = torch.max(computed_scores, dim=1).values
57
+
58
+ # Sum up the maximum scores across features to get the overall document relevance scores
59
+ final_scores = maximum_scores.sum(dim=1)
60
+
61
+ normalized_scores = torch.softmax(final_scores, dim=0)
62
+
63
+ return normalized_scores.detach().cpu().numpy().astype(np.float32)
64
+
65
+ def predict(self, sentences):
66
+
67
+ query = sentences[0][0]
68
+ docs = [i[1] for i in sentences]
69
+
70
+ # Embedding the documents
71
+ embedded_docs = self.ckpt.docFromText(docs, bsize=32)[0]
72
+ # Embedding the queries
73
+ embedded_queries = self.ckpt.queryFromText([query], bsize=32)
74
+ embedded_query = embedded_queries[0]
75
+
76
+ # Calculate retrieval scores for the query against all documents
77
+ scores = self.calculate_similarity_scores(
78
+ embedded_query.unsqueeze(0), embedded_docs
79
+ )
80
+
81
+ return scores
backend/open_webui/apps/retrieval/utils.py ADDED
@@ -0,0 +1,538 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import logging
2
+ import os
3
+ import uuid
4
+ from typing import Optional, Union
5
+
6
+ import requests
7
+
8
+ from huggingface_hub import snapshot_download
9
+ from langchain.retrievers import ContextualCompressionRetriever, EnsembleRetriever
10
+ from langchain_community.retrievers import BM25Retriever
11
+ from langchain_core.documents import Document
12
+
13
+
14
+ from open_webui.apps.ollama.main import (
15
+ GenerateEmbeddingsForm,
16
+ generate_ollama_embeddings,
17
+ )
18
+ from open_webui.apps.retrieval.vector.connector import VECTOR_DB_CLIENT
19
+ from open_webui.utils.misc import get_last_user_message
20
+
21
+ from open_webui.env import SRC_LOG_LEVELS
22
+
23
+
24
+ log = logging.getLogger(__name__)
25
+ log.setLevel(SRC_LOG_LEVELS["RAG"])
26
+
27
+
28
+ from typing import Any
29
+
30
+ from langchain_core.callbacks import CallbackManagerForRetrieverRun
31
+ from langchain_core.retrievers import BaseRetriever
32
+
33
+
34
+ class VectorSearchRetriever(BaseRetriever):
35
+ collection_name: Any
36
+ embedding_function: Any
37
+ top_k: int
38
+
39
+ def _get_relevant_documents(
40
+ self,
41
+ query: str,
42
+ *,
43
+ run_manager: CallbackManagerForRetrieverRun,
44
+ ) -> list[Document]:
45
+ result = VECTOR_DB_CLIENT.search(
46
+ collection_name=self.collection_name,
47
+ vectors=[self.embedding_function(query)],
48
+ limit=self.top_k,
49
+ )
50
+
51
+ ids = result.ids[0]
52
+ metadatas = result.metadatas[0]
53
+ documents = result.documents[0]
54
+
55
+ results = []
56
+ for idx in range(len(ids)):
57
+ results.append(
58
+ Document(
59
+ metadata=metadatas[idx],
60
+ page_content=documents[idx],
61
+ )
62
+ )
63
+ return results
64
+
65
+
66
+ def query_doc(
67
+ collection_name: str,
68
+ query_embedding: list[float],
69
+ k: int,
70
+ ):
71
+ try:
72
+ result = VECTOR_DB_CLIENT.search(
73
+ collection_name=collection_name,
74
+ vectors=[query_embedding],
75
+ limit=k,
76
+ )
77
+
78
+ log.info(f"query_doc:result {result}")
79
+ return result
80
+ except Exception as e:
81
+ print(e)
82
+ raise e
83
+
84
+
85
+ def query_doc_with_hybrid_search(
86
+ collection_name: str,
87
+ query: str,
88
+ embedding_function,
89
+ k: int,
90
+ reranking_function,
91
+ r: float,
92
+ ) -> dict:
93
+ try:
94
+ result = VECTOR_DB_CLIENT.get(collection_name=collection_name)
95
+
96
+ bm25_retriever = BM25Retriever.from_texts(
97
+ texts=result.documents[0],
98
+ metadatas=result.metadatas[0],
99
+ )
100
+ bm25_retriever.k = k
101
+
102
+ vector_search_retriever = VectorSearchRetriever(
103
+ collection_name=collection_name,
104
+ embedding_function=embedding_function,
105
+ top_k=k,
106
+ )
107
+
108
+ ensemble_retriever = EnsembleRetriever(
109
+ retrievers=[bm25_retriever, vector_search_retriever], weights=[0.5, 0.5]
110
+ )
111
+ compressor = RerankCompressor(
112
+ embedding_function=embedding_function,
113
+ top_n=k,
114
+ reranking_function=reranking_function,
115
+ r_score=r,
116
+ )
117
+
118
+ compression_retriever = ContextualCompressionRetriever(
119
+ base_compressor=compressor, base_retriever=ensemble_retriever
120
+ )
121
+
122
+ result = compression_retriever.invoke(query)
123
+ result = {
124
+ "distances": [[d.metadata.get("score") for d in result]],
125
+ "documents": [[d.page_content for d in result]],
126
+ "metadatas": [[d.metadata for d in result]],
127
+ }
128
+
129
+ log.info(f"query_doc_with_hybrid_search:result {result}")
130
+ return result
131
+ except Exception as e:
132
+ raise e
133
+
134
+
135
+ def merge_and_sort_query_results(
136
+ query_results: list[dict], k: int, reverse: bool = False
137
+ ) -> list[dict]:
138
+ # Initialize lists to store combined data
139
+ combined_distances = []
140
+ combined_documents = []
141
+ combined_metadatas = []
142
+
143
+ for data in query_results:
144
+ combined_distances.extend(data["distances"][0])
145
+ combined_documents.extend(data["documents"][0])
146
+ combined_metadatas.extend(data["metadatas"][0])
147
+
148
+ # Create a list of tuples (distance, document, metadata)
149
+ combined = list(zip(combined_distances, combined_documents, combined_metadatas))
150
+
151
+ # Sort the list based on distances
152
+ combined.sort(key=lambda x: x[0], reverse=reverse)
153
+
154
+ # We don't have anything :-(
155
+ if not combined:
156
+ sorted_distances = []
157
+ sorted_documents = []
158
+ sorted_metadatas = []
159
+ else:
160
+ # Unzip the sorted list
161
+ sorted_distances, sorted_documents, sorted_metadatas = zip(*combined)
162
+
163
+ # Slicing the lists to include only k elements
164
+ sorted_distances = list(sorted_distances)[:k]
165
+ sorted_documents = list(sorted_documents)[:k]
166
+ sorted_metadatas = list(sorted_metadatas)[:k]
167
+
168
+ # Create the output dictionary
169
+ result = {
170
+ "distances": [sorted_distances],
171
+ "documents": [sorted_documents],
172
+ "metadatas": [sorted_metadatas],
173
+ }
174
+
175
+ return result
176
+
177
+
178
+ def query_collection(
179
+ collection_names: list[str],
180
+ query: str,
181
+ embedding_function,
182
+ k: int,
183
+ ) -> dict:
184
+
185
+ results = []
186
+ query_embedding = embedding_function(query)
187
+
188
+ for collection_name in collection_names:
189
+ if collection_name:
190
+ try:
191
+ result = query_doc(
192
+ collection_name=collection_name,
193
+ k=k,
194
+ query_embedding=query_embedding,
195
+ )
196
+ results.append(result.model_dump())
197
+ except Exception as e:
198
+ log.exception(f"Error when querying the collection: {e}")
199
+ else:
200
+ pass
201
+
202
+ return merge_and_sort_query_results(results, k=k)
203
+
204
+
205
+ def query_collection_with_hybrid_search(
206
+ collection_names: list[str],
207
+ query: str,
208
+ embedding_function,
209
+ k: int,
210
+ reranking_function,
211
+ r: float,
212
+ ) -> dict:
213
+ results = []
214
+ error = False
215
+ for collection_name in collection_names:
216
+ try:
217
+ result = query_doc_with_hybrid_search(
218
+ collection_name=collection_name,
219
+ query=query,
220
+ embedding_function=embedding_function,
221
+ k=k,
222
+ reranking_function=reranking_function,
223
+ r=r,
224
+ )
225
+ results.append(result)
226
+ except Exception as e:
227
+ log.exception(
228
+ "Error when querying the collection with " f"hybrid_search: {e}"
229
+ )
230
+ error = True
231
+
232
+ if error:
233
+ raise Exception(
234
+ "Hybrid search failed for all collections. Using Non hybrid search as fallback."
235
+ )
236
+
237
+ return merge_and_sort_query_results(results, k=k, reverse=True)
238
+
239
+
240
+ def rag_template(template: str, context: str, query: str):
241
+ count = template.count("[context]")
242
+ assert "[context]" in template, "RAG template does not contain '[context]'"
243
+
244
+ if "<context>" in context and "</context>" in context:
245
+ log.debug(
246
+ "WARNING: Potential prompt injection attack: the RAG "
247
+ "context contains '<context>' and '</context>'. This might be "
248
+ "nothing, or the user might be trying to hack something."
249
+ )
250
+
251
+ if "[query]" in context:
252
+ query_placeholder = f"[query-{str(uuid.uuid4())}]"
253
+ template = template.replace("[query]", query_placeholder)
254
+ template = template.replace("[context]", context)
255
+ template = template.replace(query_placeholder, query)
256
+ else:
257
+ template = template.replace("[context]", context)
258
+ template = template.replace("[query]", query)
259
+ return template
260
+
261
+
262
+ def get_embedding_function(
263
+ embedding_engine,
264
+ embedding_model,
265
+ embedding_function,
266
+ openai_key,
267
+ openai_url,
268
+ batch_size,
269
+ ):
270
+ if embedding_engine == "":
271
+ return lambda query: embedding_function.encode(query).tolist()
272
+ elif embedding_engine in ["ollama", "openai"]:
273
+ if embedding_engine == "ollama":
274
+ func = lambda query: generate_ollama_embeddings(
275
+ GenerateEmbeddingsForm(
276
+ **{
277
+ "model": embedding_model,
278
+ "prompt": query,
279
+ }
280
+ )
281
+ )
282
+ elif embedding_engine == "openai":
283
+ func = lambda query: generate_openai_embeddings(
284
+ model=embedding_model,
285
+ text=query,
286
+ key=openai_key,
287
+ url=openai_url,
288
+ )
289
+
290
+ def generate_multiple(query, f):
291
+ if isinstance(query, list):
292
+ if embedding_engine == "openai":
293
+ embeddings = []
294
+ for i in range(0, len(query), batch_size):
295
+ embeddings.extend(f(query[i : i + batch_size]))
296
+ return embeddings
297
+ else:
298
+ return [f(q) for q in query]
299
+ else:
300
+ return f(query)
301
+
302
+ return lambda query: generate_multiple(query, func)
303
+
304
+
305
+ def get_rag_context(
306
+ files,
307
+ messages,
308
+ embedding_function,
309
+ k,
310
+ reranking_function,
311
+ r,
312
+ hybrid_search,
313
+ ):
314
+ log.debug(f"files: {files} {messages} {embedding_function} {reranking_function}")
315
+ query = get_last_user_message(messages)
316
+
317
+ extracted_collections = []
318
+ relevant_contexts = []
319
+
320
+ for file in files:
321
+ if file.get("context") == "full":
322
+ context = {
323
+ "documents": [[file.get("file").get("data", {}).get("content")]],
324
+ "metadatas": [[{"file_id": file.get("id"), "name": file.get("name")}]],
325
+ }
326
+ else:
327
+ context = None
328
+
329
+ collection_names = []
330
+ if file.get("type") == "collection":
331
+ if file.get("legacy"):
332
+ collection_names = file.get("collection_names", [])
333
+ else:
334
+ collection_names.append(file["id"])
335
+ elif file.get("collection_name"):
336
+ collection_names.append(file["collection_name"])
337
+ elif file.get("id"):
338
+ if file.get("legacy"):
339
+ collection_names.append(f"{file['id']}")
340
+ else:
341
+ collection_names.append(f"file-{file['id']}")
342
+
343
+ collection_names = set(collection_names).difference(extracted_collections)
344
+ if not collection_names:
345
+ log.debug(f"skipping {file} as it has already been extracted")
346
+ continue
347
+
348
+ try:
349
+ context = None
350
+ if file.get("type") == "text":
351
+ context = file["content"]
352
+ else:
353
+ if hybrid_search:
354
+ try:
355
+ context = query_collection_with_hybrid_search(
356
+ collection_names=collection_names,
357
+ query=query,
358
+ embedding_function=embedding_function,
359
+ k=k,
360
+ reranking_function=reranking_function,
361
+ r=r,
362
+ )
363
+ except Exception as e:
364
+ log.debug(
365
+ "Error when using hybrid search, using"
366
+ " non hybrid search as fallback."
367
+ )
368
+
369
+ if (not hybrid_search) or (context is None):
370
+ context = query_collection(
371
+ collection_names=collection_names,
372
+ query=query,
373
+ embedding_function=embedding_function,
374
+ k=k,
375
+ )
376
+ except Exception as e:
377
+ log.exception(e)
378
+
379
+ extracted_collections.extend(collection_names)
380
+
381
+ if context:
382
+ relevant_contexts.append({**context, "file": file})
383
+
384
+ contexts = []
385
+ citations = []
386
+ for context in relevant_contexts:
387
+ try:
388
+ if "documents" in context:
389
+ contexts.append(
390
+ "\n\n".join(
391
+ [text for text in context["documents"][0] if text is not None]
392
+ )
393
+ )
394
+
395
+ if "metadatas" in context:
396
+ citations.append(
397
+ {
398
+ "source": context["file"],
399
+ "document": context["documents"][0],
400
+ "metadata": context["metadatas"][0],
401
+ }
402
+ )
403
+ except Exception as e:
404
+ log.exception(e)
405
+
406
+ return contexts, citations
407
+
408
+
409
+ def get_model_path(model: str, update_model: bool = False):
410
+ # Construct huggingface_hub kwargs with local_files_only to return the snapshot path
411
+ cache_dir = os.getenv("SENTENCE_TRANSFORMERS_HOME")
412
+
413
+ local_files_only = not update_model
414
+
415
+ snapshot_kwargs = {
416
+ "cache_dir": cache_dir,
417
+ "local_files_only": local_files_only,
418
+ }
419
+
420
+ log.debug(f"model: {model}")
421
+ log.debug(f"snapshot_kwargs: {snapshot_kwargs}")
422
+
423
+ # Inspiration from upstream sentence_transformers
424
+ if (
425
+ os.path.exists(model)
426
+ or ("\\" in model or model.count("/") > 1)
427
+ and local_files_only
428
+ ):
429
+ # If fully qualified path exists, return input, else set repo_id
430
+ return model
431
+ elif "/" not in model:
432
+ # Set valid repo_id for model short-name
433
+ model = "sentence-transformers" + "/" + model
434
+
435
+ snapshot_kwargs["repo_id"] = model
436
+
437
+ # Attempt to query the huggingface_hub library to determine the local path and/or to update
438
+ try:
439
+ model_repo_path = snapshot_download(**snapshot_kwargs)
440
+ log.debug(f"model_repo_path: {model_repo_path}")
441
+ return model_repo_path
442
+ except Exception as e:
443
+ log.exception(f"Cannot determine model snapshot path: {e}")
444
+ return model
445
+
446
+
447
+ def generate_openai_embeddings(
448
+ model: str,
449
+ text: Union[str, list[str]],
450
+ key: str,
451
+ url: str = "https://api.openai.com/v1",
452
+ ):
453
+ if isinstance(text, list):
454
+ embeddings = generate_openai_batch_embeddings(model, text, key, url)
455
+ else:
456
+ embeddings = generate_openai_batch_embeddings(model, [text], key, url)
457
+
458
+ return embeddings[0] if isinstance(text, str) else embeddings
459
+
460
+
461
+ def generate_openai_batch_embeddings(
462
+ model: str, texts: list[str], key: str, url: str = "https://api.openai.com/v1"
463
+ ) -> Optional[list[list[float]]]:
464
+ try:
465
+ r = requests.post(
466
+ f"{url}/embeddings",
467
+ headers={
468
+ "Content-Type": "application/json",
469
+ "Authorization": f"Bearer {key}",
470
+ },
471
+ json={"input": texts, "model": model},
472
+ )
473
+ r.raise_for_status()
474
+ data = r.json()
475
+ if "data" in data:
476
+ return [elem["embedding"] for elem in data["data"]]
477
+ else:
478
+ raise "Something went wrong :/"
479
+ except Exception as e:
480
+ print(e)
481
+ return None
482
+
483
+
484
+ import operator
485
+ from typing import Optional, Sequence
486
+
487
+ from langchain_core.callbacks import Callbacks
488
+ from langchain_core.documents import BaseDocumentCompressor, Document
489
+
490
+
491
+ class RerankCompressor(BaseDocumentCompressor):
492
+ embedding_function: Any
493
+ top_n: int
494
+ reranking_function: Any
495
+ r_score: float
496
+
497
+ class Config:
498
+ extra = "forbid"
499
+ arbitrary_types_allowed = True
500
+
501
+ def compress_documents(
502
+ self,
503
+ documents: Sequence[Document],
504
+ query: str,
505
+ callbacks: Optional[Callbacks] = None,
506
+ ) -> Sequence[Document]:
507
+ reranking = self.reranking_function is not None
508
+
509
+ if reranking:
510
+ scores = self.reranking_function.predict(
511
+ [(query, doc.page_content) for doc in documents]
512
+ )
513
+ else:
514
+ from sentence_transformers import util
515
+
516
+ query_embedding = self.embedding_function(query)
517
+ document_embedding = self.embedding_function(
518
+ [doc.page_content for doc in documents]
519
+ )
520
+ scores = util.cos_sim(query_embedding, document_embedding)[0]
521
+
522
+ docs_with_scores = list(zip(documents, scores.tolist()))
523
+ if self.r_score:
524
+ docs_with_scores = [
525
+ (d, s) for d, s in docs_with_scores if s >= self.r_score
526
+ ]
527
+
528
+ result = sorted(docs_with_scores, key=operator.itemgetter(1), reverse=True)
529
+ final_results = []
530
+ for doc, doc_score in result[: self.top_n]:
531
+ metadata = doc.metadata
532
+ metadata["score"] = doc_score
533
+ doc = Document(
534
+ page_content=doc.page_content,
535
+ metadata=metadata,
536
+ )
537
+ final_results.append(doc)
538
+ return final_results
backend/open_webui/apps/retrieval/vector/connector.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ from open_webui.config import VECTOR_DB
2
+
3
+ if VECTOR_DB == "milvus":
4
+ from open_webui.apps.retrieval.vector.dbs.milvus import MilvusClient
5
+
6
+ VECTOR_DB_CLIENT = MilvusClient()
7
+ else:
8
+ from open_webui.apps.retrieval.vector.dbs.chroma import ChromaClient
9
+
10
+ VECTOR_DB_CLIENT = ChromaClient()
backend/open_webui/apps/retrieval/vector/dbs/chroma.py ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import chromadb
2
+ from chromadb import Settings
3
+ from chromadb.utils.batch_utils import create_batches
4
+
5
+ from typing import Optional
6
+
7
+ from open_webui.apps.retrieval.vector.main import VectorItem, SearchResult, GetResult
8
+ from open_webui.config import (
9
+ CHROMA_DATA_PATH,
10
+ CHROMA_HTTP_HOST,
11
+ CHROMA_HTTP_PORT,
12
+ CHROMA_HTTP_HEADERS,
13
+ CHROMA_HTTP_SSL,
14
+ CHROMA_TENANT,
15
+ CHROMA_DATABASE,
16
+ )
17
+
18
+
19
+ class ChromaClient:
20
+ def __init__(self):
21
+ if CHROMA_HTTP_HOST != "":
22
+ self.client = chromadb.HttpClient(
23
+ host=CHROMA_HTTP_HOST,
24
+ port=CHROMA_HTTP_PORT,
25
+ headers=CHROMA_HTTP_HEADERS,
26
+ ssl=CHROMA_HTTP_SSL,
27
+ tenant=CHROMA_TENANT,
28
+ database=CHROMA_DATABASE,
29
+ settings=Settings(allow_reset=True, anonymized_telemetry=False),
30
+ )
31
+ else:
32
+ self.client = chromadb.PersistentClient(
33
+ path=CHROMA_DATA_PATH,
34
+ settings=Settings(allow_reset=True, anonymized_telemetry=False),
35
+ tenant=CHROMA_TENANT,
36
+ database=CHROMA_DATABASE,
37
+ )
38
+
39
+ def has_collection(self, collection_name: str) -> bool:
40
+ # Check if the collection exists based on the collection name.
41
+ collections = self.client.list_collections()
42
+ return collection_name in [collection.name for collection in collections]
43
+
44
+ def delete_collection(self, collection_name: str):
45
+ # Delete the collection based on the collection name.
46
+ return self.client.delete_collection(name=collection_name)
47
+
48
+ def search(
49
+ self, collection_name: str, vectors: list[list[float | int]], limit: int
50
+ ) -> Optional[SearchResult]:
51
+ # Search for the nearest neighbor items based on the vectors and return 'limit' number of results.
52
+ try:
53
+ collection = self.client.get_collection(name=collection_name)
54
+ if collection:
55
+ result = collection.query(
56
+ query_embeddings=vectors,
57
+ n_results=limit,
58
+ )
59
+
60
+ return SearchResult(
61
+ **{
62
+ "ids": result["ids"],
63
+ "distances": result["distances"],
64
+ "documents": result["documents"],
65
+ "metadatas": result["metadatas"],
66
+ }
67
+ )
68
+ return None
69
+ except Exception as e:
70
+ return None
71
+
72
+ def query(
73
+ self, collection_name: str, filter: dict, limit: Optional[int] = None
74
+ ) -> Optional[GetResult]:
75
+ # Query the items from the collection based on the filter.
76
+ try:
77
+ collection = self.client.get_collection(name=collection_name)
78
+ if collection:
79
+ result = collection.get(
80
+ where=filter,
81
+ limit=limit,
82
+ )
83
+
84
+ return GetResult(
85
+ **{
86
+ "ids": [result["ids"]],
87
+ "documents": [result["documents"]],
88
+ "metadatas": [result["metadatas"]],
89
+ }
90
+ )
91
+ return None
92
+ except Exception as e:
93
+ print(e)
94
+ return None
95
+
96
+ def get(self, collection_name: str) -> Optional[GetResult]:
97
+ # Get all the items in the collection.
98
+ collection = self.client.get_collection(name=collection_name)
99
+ if collection:
100
+ result = collection.get()
101
+ return GetResult(
102
+ **{
103
+ "ids": [result["ids"]],
104
+ "documents": [result["documents"]],
105
+ "metadatas": [result["metadatas"]],
106
+ }
107
+ )
108
+ return None
109
+
110
+ def insert(self, collection_name: str, items: list[VectorItem]):
111
+ # Insert the items into the collection, if the collection does not exist, it will be created.
112
+ collection = self.client.get_or_create_collection(name=collection_name)
113
+
114
+ ids = [item["id"] for item in items]
115
+ documents = [item["text"] for item in items]
116
+ embeddings = [item["vector"] for item in items]
117
+ metadatas = [item["metadata"] for item in items]
118
+
119
+ for batch in create_batches(
120
+ api=self.client,
121
+ documents=documents,
122
+ embeddings=embeddings,
123
+ ids=ids,
124
+ metadatas=metadatas,
125
+ ):
126
+ collection.add(*batch)
127
+
128
+ def upsert(self, collection_name: str, items: list[VectorItem]):
129
+ # Update the items in the collection, if the items are not present, insert them. If the collection does not exist, it will be created.
130
+ collection = self.client.get_or_create_collection(name=collection_name)
131
+
132
+ ids = [item["id"] for item in items]
133
+ documents = [item["text"] for item in items]
134
+ embeddings = [item["vector"] for item in items]
135
+ metadatas = [item["metadata"] for item in items]
136
+
137
+ collection.upsert(
138
+ ids=ids, documents=documents, embeddings=embeddings, metadatas=metadatas
139
+ )
140
+
141
+ def delete(
142
+ self,
143
+ collection_name: str,
144
+ ids: Optional[list[str]] = None,
145
+ filter: Optional[dict] = None,
146
+ ):
147
+ # Delete the items from the collection based on the ids.
148
+ collection = self.client.get_collection(name=collection_name)
149
+ if collection:
150
+ if ids:
151
+ collection.delete(ids=ids)
152
+ elif filter:
153
+ collection.delete(where=filter)
154
+
155
+ def reset(self):
156
+ # Resets the database. This will delete all collections and item entries.
157
+ return self.client.reset()
backend/open_webui/apps/retrieval/vector/dbs/milvus.py ADDED
@@ -0,0 +1,286 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from pymilvus import MilvusClient as Client
2
+ from pymilvus import FieldSchema, DataType
3
+ import json
4
+
5
+ from typing import Optional
6
+
7
+ from open_webui.apps.retrieval.vector.main import VectorItem, SearchResult, GetResult
8
+ from open_webui.config import (
9
+ MILVUS_URI,
10
+ )
11
+
12
+
13
+ class MilvusClient:
14
+ def __init__(self):
15
+ self.collection_prefix = "open_webui"
16
+ self.client = Client(uri=MILVUS_URI)
17
+
18
+ def _result_to_get_result(self, result) -> GetResult:
19
+ ids = []
20
+ documents = []
21
+ metadatas = []
22
+
23
+ for match in result:
24
+ _ids = []
25
+ _documents = []
26
+ _metadatas = []
27
+ for item in match:
28
+ _ids.append(item.get("id"))
29
+ _documents.append(item.get("data", {}).get("text"))
30
+ _metadatas.append(item.get("metadata"))
31
+
32
+ ids.append(_ids)
33
+ documents.append(_documents)
34
+ metadatas.append(_metadatas)
35
+
36
+ return GetResult(
37
+ **{
38
+ "ids": ids,
39
+ "documents": documents,
40
+ "metadatas": metadatas,
41
+ }
42
+ )
43
+
44
+ def _result_to_search_result(self, result) -> SearchResult:
45
+ ids = []
46
+ distances = []
47
+ documents = []
48
+ metadatas = []
49
+
50
+ for match in result:
51
+ _ids = []
52
+ _distances = []
53
+ _documents = []
54
+ _metadatas = []
55
+
56
+ for item in match:
57
+ _ids.append(item.get("id"))
58
+ _distances.append(item.get("distance"))
59
+ _documents.append(item.get("entity", {}).get("data", {}).get("text"))
60
+ _metadatas.append(item.get("entity", {}).get("metadata"))
61
+
62
+ ids.append(_ids)
63
+ distances.append(_distances)
64
+ documents.append(_documents)
65
+ metadatas.append(_metadatas)
66
+
67
+ return SearchResult(
68
+ **{
69
+ "ids": ids,
70
+ "distances": distances,
71
+ "documents": documents,
72
+ "metadatas": metadatas,
73
+ }
74
+ )
75
+
76
+ def _create_collection(self, collection_name: str, dimension: int):
77
+ schema = self.client.create_schema(
78
+ auto_id=False,
79
+ enable_dynamic_field=True,
80
+ )
81
+ schema.add_field(
82
+ field_name="id",
83
+ datatype=DataType.VARCHAR,
84
+ is_primary=True,
85
+ max_length=65535,
86
+ )
87
+ schema.add_field(
88
+ field_name="vector",
89
+ datatype=DataType.FLOAT_VECTOR,
90
+ dim=dimension,
91
+ description="vector",
92
+ )
93
+ schema.add_field(field_name="data", datatype=DataType.JSON, description="data")
94
+ schema.add_field(
95
+ field_name="metadata", datatype=DataType.JSON, description="metadata"
96
+ )
97
+
98
+ index_params = self.client.prepare_index_params()
99
+ index_params.add_index(
100
+ field_name="vector",
101
+ index_type="HNSW",
102
+ metric_type="COSINE",
103
+ params={"M": 16, "efConstruction": 100},
104
+ )
105
+
106
+ self.client.create_collection(
107
+ collection_name=f"{self.collection_prefix}_{collection_name}",
108
+ schema=schema,
109
+ index_params=index_params,
110
+ )
111
+
112
+ def has_collection(self, collection_name: str) -> bool:
113
+ # Check if the collection exists based on the collection name.
114
+ collection_name = collection_name.replace("-", "_")
115
+ return self.client.has_collection(
116
+ collection_name=f"{self.collection_prefix}_{collection_name}"
117
+ )
118
+
119
+ def delete_collection(self, collection_name: str):
120
+ # Delete the collection based on the collection name.
121
+ collection_name = collection_name.replace("-", "_")
122
+ return self.client.drop_collection(
123
+ collection_name=f"{self.collection_prefix}_{collection_name}"
124
+ )
125
+
126
+ def search(
127
+ self, collection_name: str, vectors: list[list[float | int]], limit: int
128
+ ) -> Optional[SearchResult]:
129
+ # Search for the nearest neighbor items based on the vectors and return 'limit' number of results.
130
+ collection_name = collection_name.replace("-", "_")
131
+ result = self.client.search(
132
+ collection_name=f"{self.collection_prefix}_{collection_name}",
133
+ data=vectors,
134
+ limit=limit,
135
+ output_fields=["data", "metadata"],
136
+ )
137
+
138
+ return self._result_to_search_result(result)
139
+
140
+ def query(self, collection_name: str, filter: dict, limit: Optional[int] = None):
141
+ # Construct the filter string for querying
142
+ collection_name = collection_name.replace("-", "_")
143
+ if not self.has_collection(collection_name):
144
+ return None
145
+
146
+ filter_string = " && ".join(
147
+ [
148
+ f'metadata["{key}"] == {json.dumps(value)}'
149
+ for key, value in filter.items()
150
+ ]
151
+ )
152
+
153
+ max_limit = 16383 # The maximum number of records per request
154
+ all_results = []
155
+
156
+ if limit is None:
157
+ limit = float("inf") # Use infinity as a placeholder for no limit
158
+
159
+ # Initialize offset and remaining to handle pagination
160
+ offset = 0
161
+ remaining = limit
162
+
163
+ try:
164
+ # Loop until there are no more items to fetch or the desired limit is reached
165
+ while remaining > 0:
166
+ print("remaining", remaining)
167
+ current_fetch = min(
168
+ max_limit, remaining
169
+ ) # Determine how many items to fetch in this iteration
170
+
171
+ results = self.client.query(
172
+ collection_name=f"{self.collection_prefix}_{collection_name}",
173
+ filter=filter_string,
174
+ output_fields=["*"],
175
+ limit=current_fetch,
176
+ offset=offset,
177
+ )
178
+
179
+ if not results:
180
+ break
181
+
182
+ all_results.extend(results)
183
+ results_count = len(results)
184
+ remaining -= (
185
+ results_count # Decrease remaining by the number of items fetched
186
+ )
187
+ offset += results_count
188
+
189
+ # Break the loop if the results returned are less than the requested fetch count
190
+ if results_count < current_fetch:
191
+ break
192
+
193
+ print(all_results)
194
+ return self._result_to_get_result([all_results])
195
+ except Exception as e:
196
+ print(e)
197
+ return None
198
+
199
+ def get(self, collection_name: str) -> Optional[GetResult]:
200
+ # Get all the items in the collection.
201
+ collection_name = collection_name.replace("-", "_")
202
+ result = self.client.query(
203
+ collection_name=f"{self.collection_prefix}_{collection_name}",
204
+ filter='id != ""',
205
+ )
206
+ return self._result_to_get_result([result])
207
+
208
+ def insert(self, collection_name: str, items: list[VectorItem]):
209
+ # Insert the items into the collection, if the collection does not exist, it will be created.
210
+ collection_name = collection_name.replace("-", "_")
211
+ if not self.client.has_collection(
212
+ collection_name=f"{self.collection_prefix}_{collection_name}"
213
+ ):
214
+ self._create_collection(
215
+ collection_name=collection_name, dimension=len(items[0]["vector"])
216
+ )
217
+
218
+ return self.client.insert(
219
+ collection_name=f"{self.collection_prefix}_{collection_name}",
220
+ data=[
221
+ {
222
+ "id": item["id"],
223
+ "vector": item["vector"],
224
+ "data": {"text": item["text"]},
225
+ "metadata": item["metadata"],
226
+ }
227
+ for item in items
228
+ ],
229
+ )
230
+
231
+ def upsert(self, collection_name: str, items: list[VectorItem]):
232
+ # Update the items in the collection, if the items are not present, insert them. If the collection does not exist, it will be created.
233
+ collection_name = collection_name.replace("-", "_")
234
+ if not self.client.has_collection(
235
+ collection_name=f"{self.collection_prefix}_{collection_name}"
236
+ ):
237
+ self._create_collection(
238
+ collection_name=collection_name, dimension=len(items[0]["vector"])
239
+ )
240
+
241
+ return self.client.upsert(
242
+ collection_name=f"{self.collection_prefix}_{collection_name}",
243
+ data=[
244
+ {
245
+ "id": item["id"],
246
+ "vector": item["vector"],
247
+ "data": {"text": item["text"]},
248
+ "metadata": item["metadata"],
249
+ }
250
+ for item in items
251
+ ],
252
+ )
253
+
254
+ def delete(
255
+ self,
256
+ collection_name: str,
257
+ ids: Optional[list[str]] = None,
258
+ filter: Optional[dict] = None,
259
+ ):
260
+ # Delete the items from the collection based on the ids.
261
+ collection_name = collection_name.replace("-", "_")
262
+ if ids:
263
+ return self.client.delete(
264
+ collection_name=f"{self.collection_prefix}_{collection_name}",
265
+ ids=ids,
266
+ )
267
+ elif filter:
268
+ # Convert the filter dictionary to a string using JSON_CONTAINS.
269
+ filter_string = " && ".join(
270
+ [
271
+ f'metadata["{key}"] == {json.dumps(value)}'
272
+ for key, value in filter.items()
273
+ ]
274
+ )
275
+
276
+ return self.client.delete(
277
+ collection_name=f"{self.collection_prefix}_{collection_name}",
278
+ filter=filter_string,
279
+ )
280
+
281
+ def reset(self):
282
+ # Resets the database. This will delete all collections and item entries.
283
+ collection_names = self.client.list_collections()
284
+ for collection_name in collection_names:
285
+ if collection_name.startswith(self.collection_prefix):
286
+ self.client.drop_collection(collection_name=collection_name)