preppergpt 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +93 -0
- package/bin/preppergpt.js +8 -0
- package/compose/preppergpt.yaml +232 -0
- package/docs/hardware.md +15 -0
- package/docs/model-sources.md +12 -0
- package/docs/preppergpt-local-parity-map.md +16 -0
- package/docs/publishing.md +24 -0
- package/installer/cli.mjs +225 -0
- package/installer/install.sh +18 -0
- package/installer/lib/detect.mjs +128 -0
- package/installer/lib/paths.mjs +26 -0
- package/installer/lib/planner.mjs +175 -0
- package/installer/lib/render.mjs +76 -0
- package/installer/lib/util.mjs +84 -0
- package/package.json +48 -0
- package/profiles/models.json +277 -0
- package/services/comfyui/flux-kontext-edit-openwebui-nodes.json +46 -0
- package/services/comfyui/flux-kontext-edit-openwebui-workflow.json +245 -0
- package/services/comfyui/flux-kontext-mask-edit-openwebui-nodes.json +51 -0
- package/services/comfyui/flux-kontext-mask-edit-openwebui-workflow.json +322 -0
- package/services/comfyui/flux2-klein-9b-openwebui-nodes.json +58 -0
- package/services/comfyui/flux2-klein-9b-openwebui-workflow.json +141 -0
- package/services/comfyui/image-invert-edit-openwebui-nodes.json +23 -0
- package/services/comfyui/image-invert-edit-openwebui-workflow.json +52 -0
- package/services/deep-research/Dockerfile +7 -0
- package/services/deep-research/app.py +1913 -0
- package/services/local-agent/Dockerfile +17 -0
- package/services/local-agent/app.py +2311 -0
- package/services/local-scheduler/Dockerfile +8 -0
- package/services/local-scheduler/app.py +15774 -0
- package/services/local-vision/Dockerfile +11 -0
- package/services/local-vision/app.py +888 -0
- package/services/searxng/settings.yml +16 -0
- package/themes/preppergpt/custom.css +15 -0
- package/themes/preppergpt/static/favicon.svg +5 -0
- package/themes/preppergpt/static/logo.svg +6 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
use_default_settings: true
|
|
2
|
+
|
|
3
|
+
server:
|
|
4
|
+
secret_key: "103f1d98b696dd725ee1c24860d300c19b5a1d0908f78ab3479945cbb4f9fc41"
|
|
5
|
+
bind_address: "0.0.0.0"
|
|
6
|
+
port: 8080
|
|
7
|
+
limiter: false
|
|
8
|
+
image_proxy: true
|
|
9
|
+
|
|
10
|
+
search:
|
|
11
|
+
formats:
|
|
12
|
+
- html
|
|
13
|
+
- json
|
|
14
|
+
|
|
15
|
+
ui:
|
|
16
|
+
static_use_hash: true
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--preppergpt-bg: #101611;
|
|
3
|
+
--preppergpt-panel: #17231a;
|
|
4
|
+
--preppergpt-accent: #89b36d;
|
|
5
|
+
--preppergpt-warn: #e4c76a;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
html.dark body {
|
|
9
|
+
background: var(--preppergpt-bg);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
[data-testid="sidebar"],
|
|
13
|
+
.sidebar {
|
|
14
|
+
border-color: rgba(137, 179, 109, 0.24);
|
|
15
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
|
|
2
|
+
<rect width="64" height="64" rx="12" fill="#111a14"/>
|
|
3
|
+
<path d="M32 7 53 17v14c0 13-8 23-21 27C19 54 11 44 11 31V17L32 7Z" fill="#203d2b" stroke="#89b36d" stroke-width="4"/>
|
|
4
|
+
<path d="M21 32h22M24 24h16M26 40h12" stroke="#e4c76a" stroke-width="4" stroke-linecap="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" role="img" aria-label="PrepperGPT logo">
|
|
2
|
+
<rect width="256" height="256" rx="32" fill="#111a14"/>
|
|
3
|
+
<path d="M128 28 212 66v58c0 53-35 91-84 104-49-13-84-51-84-104V66l84-38Z" fill="#203d2b" stroke="#89b36d" stroke-width="10"/>
|
|
4
|
+
<path d="M74 126h108M88 96h80M96 156h64" stroke="#e4c76a" stroke-width="14" stroke-linecap="round"/>
|
|
5
|
+
<circle cx="128" cy="126" r="18" fill="#e4c76a"/>
|
|
6
|
+
</svg>
|