Spaces:
				
			
			
	
			
			
		Runtime error
		
	
	
	
			
			
	
	
	
	
		
		
		Runtime error
		
	Commit 
							
							·
						
						abdfc2d
	
0
								Parent(s):
							
							
OpenWebUI: Initial.
Browse files- .gitattributes +36 -0
- Dockerfile +25 -0
- LICENSE +22 -0
- README.md +62 -0
- src/database/webui.db +3 -0
    	
        .gitattributes
    ADDED
    
    | @@ -0,0 +1,36 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            *.7z filter=lfs diff=lfs merge=lfs -text
         | 
| 2 | 
            +
            *.arrow filter=lfs diff=lfs merge=lfs -text
         | 
| 3 | 
            +
            *.bin filter=lfs diff=lfs merge=lfs -text
         | 
| 4 | 
            +
            *.bz2 filter=lfs diff=lfs merge=lfs -text
         | 
| 5 | 
            +
            *.ckpt filter=lfs diff=lfs merge=lfs -text
         | 
| 6 | 
            +
            *.ftz filter=lfs diff=lfs merge=lfs -text
         | 
| 7 | 
            +
            *.gz filter=lfs diff=lfs merge=lfs -text
         | 
| 8 | 
            +
            *.h5 filter=lfs diff=lfs merge=lfs -text
         | 
| 9 | 
            +
            *.joblib filter=lfs diff=lfs merge=lfs -text
         | 
| 10 | 
            +
            *.lfs.* filter=lfs diff=lfs merge=lfs -text
         | 
| 11 | 
            +
            *.mlmodel filter=lfs diff=lfs merge=lfs -text
         | 
| 12 | 
            +
            *.model filter=lfs diff=lfs merge=lfs -text
         | 
| 13 | 
            +
            *.msgpack filter=lfs diff=lfs merge=lfs -text
         | 
| 14 | 
            +
            *.npy filter=lfs diff=lfs merge=lfs -text
         | 
| 15 | 
            +
            *.npz filter=lfs diff=lfs merge=lfs -text
         | 
| 16 | 
            +
            *.onnx filter=lfs diff=lfs merge=lfs -text
         | 
| 17 | 
            +
            *.ot filter=lfs diff=lfs merge=lfs -text
         | 
| 18 | 
            +
            *.parquet filter=lfs diff=lfs merge=lfs -text
         | 
| 19 | 
            +
            *.pb filter=lfs diff=lfs merge=lfs -text
         | 
| 20 | 
            +
            *.pickle filter=lfs diff=lfs merge=lfs -text
         | 
| 21 | 
            +
            *.pkl filter=lfs diff=lfs merge=lfs -text
         | 
| 22 | 
            +
            *.pt filter=lfs diff=lfs merge=lfs -text
         | 
| 23 | 
            +
            *.pth filter=lfs diff=lfs merge=lfs -text
         | 
| 24 | 
            +
            *.rar filter=lfs diff=lfs merge=lfs -text
         | 
| 25 | 
            +
            *.safetensors filter=lfs diff=lfs merge=lfs -text
         | 
| 26 | 
            +
            saved_model/**/* filter=lfs diff=lfs merge=lfs -text
         | 
| 27 | 
            +
            *.tar.* filter=lfs diff=lfs merge=lfs -text
         | 
| 28 | 
            +
            *.tar filter=lfs diff=lfs merge=lfs -text
         | 
| 29 | 
            +
            *.tflite filter=lfs diff=lfs merge=lfs -text
         | 
| 30 | 
            +
            *.tgz filter=lfs diff=lfs merge=lfs -text
         | 
| 31 | 
            +
            *.wasm filter=lfs diff=lfs merge=lfs -text
         | 
| 32 | 
            +
            *.xz filter=lfs diff=lfs merge=lfs -text
         | 
| 33 | 
            +
            *.zip filter=lfs diff=lfs merge=lfs -text
         | 
| 34 | 
            +
            *.zst filter=lfs diff=lfs merge=lfs -text
         | 
| 35 | 
            +
            *tfevents* filter=lfs diff=lfs merge=lfs -text
         | 
| 36 | 
            +
            *.db filter=lfs diff=lfs merge=lfs -text
         | 
    	
        Dockerfile
    ADDED
    
    | @@ -0,0 +1,25 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            #
         | 
| 2 | 
            +
            # SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
         | 
| 3 | 
            +
            # SPDX-License-Identifier: MIT
         | 
| 4 | 
            +
            #
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            # Use a specific container image for the application
         | 
| 7 | 
            +
            FROM hadadrjt/ai:latest
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            # Set the main working directory inside the container
         | 
| 10 | 
            +
            WORKDIR /app/backend
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            # Copy the database file into the container
         | 
| 13 | 
            +
            # This database is a placeholder or dummy,
         | 
| 14 | 
            +
            # and the core configuration is located in the Environment
         | 
| 15 | 
            +
            # and Secret Environment settings of Hugging Face Spaces.
         | 
| 16 | 
            +
            COPY --chown=$UID:$GID src/database/webui.db /app/backend/data/
         | 
| 17 | 
            +
             | 
| 18 | 
            +
            # Set the database permission
         | 
| 19 | 
            +
            RUN chmod 777 /app/backend/data/webui.db
         | 
| 20 | 
            +
             | 
| 21 | 
            +
            # Open the port so the application can be accessed
         | 
| 22 | 
            +
            EXPOSE 8000
         | 
| 23 | 
            +
             | 
| 24 | 
            +
            # Start the application using the startup script
         | 
| 25 | 
            +
            CMD ["bash", "start.sh"]
         | 
    	
        LICENSE
    ADDED
    
    | @@ -0,0 +1,22 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            MIT License
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            Copyright (c) 2023 pollinations
         | 
| 4 | 
            +
            Copyright (c) 2025 Hadad <hadad@linuxmail.org>
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            Permission is hereby granted, free of charge, to any person obtaining a copy
         | 
| 7 | 
            +
            of this software and associated documentation files (the "Software"), to deal
         | 
| 8 | 
            +
            in the Software without restriction, including without limitation the rights
         | 
| 9 | 
            +
            to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         | 
| 10 | 
            +
            copies of the Software, and to permit persons to whom the Software is
         | 
| 11 | 
            +
            furnished to do so, subject to the following conditions:
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            The above copyright notice and this permission notice shall be included in all
         | 
| 14 | 
            +
            copies or substantial portions of the Software.
         | 
| 15 | 
            +
             | 
| 16 | 
            +
            THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         | 
| 17 | 
            +
            IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         | 
| 18 | 
            +
            FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         | 
| 19 | 
            +
            AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         | 
| 20 | 
            +
            LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         | 
| 21 | 
            +
            OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
         | 
| 22 | 
            +
            SOFTWARE.
         | 
    	
        README.md
    ADDED
    
    | @@ -0,0 +1,62 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            title: UltimaX Intelligence
         | 
| 3 | 
            +
            short_description: Premium AI | Tools | Code Interpreter | Web Generator | etc
         | 
| 4 | 
            +
            license: mit
         | 
| 5 | 
            +
            emoji: ⚡
         | 
| 6 | 
            +
            colorFrom: purple
         | 
| 7 | 
            +
            colorTo: green
         | 
| 8 | 
            +
            sdk: docker
         | 
| 9 | 
            +
            app_port: 8000
         | 
| 10 | 
            +
            pinned: true
         | 
| 11 | 
            +
            thumbnail: >-
         | 
| 12 | 
            +
              https://cdn-uploads.huggingface.co/production/uploads/686e28b405d4ddcdd96adeb2/i9iufR3L-rgj39mk_B9QW.jpeg
         | 
| 13 | 
            +
            # Used to promote this Hugging Face Space
         | 
| 14 | 
            +
            models:
         | 
| 15 | 
            +
            - hadadrjt/JARVIS
         | 
| 16 | 
            +
            - agentica-org/DeepCoder-14B-Preview
         | 
| 17 | 
            +
            - agentica-org/DeepSWE-Preview
         | 
| 18 | 
            +
            - fka/awesome-chatgpt-prompts
         | 
| 19 | 
            +
            - black-forest-labs/FLUX.1-Kontext-dev
         | 
| 20 | 
            +
            - ChatDOC/OCRFlux-3B
         | 
| 21 | 
            +
            - deepseek-ai/DeepSeek-R1
         | 
| 22 | 
            +
            - deepseek-ai/DeepSeek-R1-0528
         | 
| 23 | 
            +
            - deepseek-ai/DeepSeek-R1-Distill-Llama-70B
         | 
| 24 | 
            +
            - deepseek-ai/DeepSeek-R1-Distill-Qwen-32B
         | 
| 25 | 
            +
            - deepseek-ai/DeepSeek-R1-0528-Qwen3-8B
         | 
| 26 | 
            +
            - deepseek-ai/DeepSeek-V3-0324
         | 
| 27 | 
            +
            - google/gemma-3-1b-it
         | 
| 28 | 
            +
            - google/gemma-3-27b-it
         | 
| 29 | 
            +
            - google/gemma-3-4b-it
         | 
| 30 | 
            +
            - google/gemma-3n-E4B-it
         | 
| 31 | 
            +
            - google/gemma-3n-E4B-it-litert-preview
         | 
| 32 | 
            +
            - google/medsiglip-448
         | 
| 33 | 
            +
            - kyutai/tts-1.6b-en_fr
         | 
| 34 | 
            +
            - meta-llama/Llama-3.1-8B-Instruct
         | 
| 35 | 
            +
            - meta-llama/Llama-3.2-3B-Instruct
         | 
| 36 | 
            +
            - meta-llama/Llama-3.3-70B-Instruct
         | 
| 37 | 
            +
            - meta-llama/Llama-4-Maverick-17B-128E-Instruct
         | 
| 38 | 
            +
            - meta-llama/Llama-4-Scout-17B-16E-Instruct
         | 
| 39 | 
            +
            - microsoft/Phi-4-mini-instruct
         | 
| 40 | 
            +
            - mistralai/Devstral-Small-2505
         | 
| 41 | 
            +
            - mistralai/Mistral-Small-3.1-24B-Instruct-2503
         | 
| 42 | 
            +
            - openai/webgpt_comparisons
         | 
| 43 | 
            +
            - openai/whisper-large-v3-turbo
         | 
| 44 | 
            +
            - openai/gpt-oss-120b
         | 
| 45 | 
            +
            - openai/gpt-oss-20b
         | 
| 46 | 
            +
            - Qwen/QwQ-32B
         | 
| 47 | 
            +
            - Qwen/Qwen2.5-VL-32B-Instruct
         | 
| 48 | 
            +
            - Qwen/Qwen2.5-VL-3B-Instruct
         | 
| 49 | 
            +
            - Qwen/Qwen2.5-VL-72B-Instruct
         | 
| 50 | 
            +
            - Qwen/Qwen3-235B-A22B
         | 
| 51 | 
            +
            - THUDM/GLM-4.1V-9B-Thinking
         | 
| 52 | 
            +
            - tngtech/DeepSeek-TNG-R1T2-Chimera
         | 
| 53 | 
            +
            - moonshotai/Kimi-K2-Instruct
         | 
| 54 | 
            +
            - Qwen/Qwen3-235B-A22B-Instruct-2507
         | 
| 55 | 
            +
            - Qwen/Qwen3-Coder-480B-A35B-Instruct
         | 
| 56 | 
            +
            - Qwen/Qwen3-235B-A22B-Thinking-2507
         | 
| 57 | 
            +
            - zai-org/GLM-4.5
         | 
| 58 | 
            +
            - zai-org/GLM-4.5-Air
         | 
| 59 | 
            +
            - zai-org/GLM-4.5V
         | 
| 60 | 
            +
            ---
         | 
| 61 | 
            +
             | 
| 62 | 
            +
            This service is powered by the [Pollinations](https://github.com/pollinations/pollinations) open-source AI community.
         | 
    	
        src/database/webui.db
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:4fbb70cc2d57f58adc3338834ebe2abe8d3f931cdda0bb43d3f0f580b9fbed4a
         | 
| 3 | 
            +
            size 9211904
         | 
