Spaces:
Running
Running
Commit
·
9a7a261
0
Parent(s):
ai: Initial.
Browse files- .gitattributes +36 -0
- Dockerfile +23 -0
- LICENSE +22 -0
- README.md +49 -0
- 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,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#
|
2 |
+
# SPDX-FileCopyrightText: Hadad <[email protected]>
|
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 |
+
COPY webui.db /app/backend/data/
|
14 |
+
|
15 |
+
# Set the database file to read-only
|
16 |
+
# to prevent unauthorized changes and improve security
|
17 |
+
RUN chmod 555 /app/backend/data/webui.db
|
18 |
+
|
19 |
+
# Open the port so the application can be accessed
|
20 |
+
EXPOSE 7860
|
21 |
+
|
22 |
+
# Start the application using the startup script
|
23 |
+
CMD ["bash", "start.sh"]
|
LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
MIT License
|
2 |
+
|
3 |
+
Copyright (c) 2023 pollinations
|
4 |
+
Copyright (c) 2025 Hadad <[email protected]>
|
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,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
title: UltimaX Intelligence
|
3 |
+
short_description: Powered by the Pollinations open-source AI community
|
4 |
+
license: mit
|
5 |
+
emoji: ⚡
|
6 |
+
colorFrom: purple
|
7 |
+
colorTo: green
|
8 |
+
sdk: docker
|
9 |
+
app_port: 7860
|
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 |
+
- mistralai/Devstral-Small-2505
|
40 |
+
- openai/webgpt_comparisons
|
41 |
+
- openai/whisper-large-v3-turbo
|
42 |
+
- Qwen/QwQ-32B
|
43 |
+
- Qwen/Qwen2.5-VL-32B-Instruct
|
44 |
+
- Qwen/Qwen2.5-VL-3B-Instruct
|
45 |
+
- Qwen/Qwen2.5-VL-72B-Instruct
|
46 |
+
- Qwen/Qwen3-235B-A22B
|
47 |
+
- THUDM/GLM-4.1V-9B-Thinking
|
48 |
+
- tngtech/DeepSeek-TNG-R1T2-Chimera
|
49 |
+
---
|
webui.db
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f7a8b36269afc195d478104591f650be37d181b12c701adb0500580d7ff5adfc
|
3 |
+
size 9211904
|