ollamadiffuser 1.2.2__tar.gz → 1.2.3__tar.gz
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.
- {ollamadiffuser-1.2.2/ollamadiffuser.egg-info → ollamadiffuser-1.2.3}/PKG-INFO +17 -1
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/README.md +16 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/__init__.py +1 -1
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3/ollamadiffuser.egg-info}/PKG-INFO +17 -1
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/pyproject.toml +1 -1
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/CHANGELOG.md +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/LICENSE +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/MANIFEST.in +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/__main__.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/api/__init__.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/api/server.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/cli/__init__.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/cli/commands.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/cli/main.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/core/__init__.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/core/config/__init__.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/core/config/model_registry.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/core/config/settings.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/core/inference/__init__.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/core/inference/engine.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/core/models/__init__.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/core/models/gguf_loader.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/core/models/manager.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/core/models/registry.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/core/utils/__init__.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/core/utils/controlnet_preprocessors.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/core/utils/download_utils.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/core/utils/lora_manager.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/__init__.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/.DS_Store +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/canny/geometric_shapes.png +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/canny/house_outline.png +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/canny/portrait_outline.png +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/depth/linear_perspective.png +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/depth/radial_gradient.png +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/depth/sphere_3d.png +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/metadata.json +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/openpose/running_pose.png +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/openpose/sitting_pose.png +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/openpose/standing_pose.png +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/scribble/car_sketch.png +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/scribble/face_sketch.png +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/scribble/tree_sketch.png +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/templates/index.html +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/web.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/utils/__init__.py +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser.egg-info/SOURCES.txt +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser.egg-info/dependency_links.txt +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser.egg-info/entry_points.txt +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser.egg-info/not-zip-safe +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser.egg-info/requires.txt +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser.egg-info/top_level.txt +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/requirements.txt +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/setup.cfg +0 -0
- {ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ollamadiffuser
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.3
|
|
4
4
|
Summary: 🎨 Local AI Image Generation with Ollama-style CLI for Stable Diffusion, FLUX.1, and LoRA support
|
|
5
5
|
Home-page: https://github.com/ollamadiffuser/ollamadiffuser
|
|
6
6
|
Author: OllamaDiffuser Team
|
|
@@ -168,6 +168,22 @@ curl -X POST http://localhost:8000/api/generate \
|
|
|
168
168
|
--output image.png
|
|
169
169
|
```
|
|
170
170
|
|
|
171
|
+
### 🔄 Update to Latest Version
|
|
172
|
+
|
|
173
|
+
**Always use the latest version** for the newest features and bug fixes:
|
|
174
|
+
|
|
175
|
+
```bash
|
|
176
|
+
# Update to latest version
|
|
177
|
+
pip uninstall ollamadiffuser
|
|
178
|
+
pip install --no-cache-dir ollamadiffuser
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
This ensures you get:
|
|
182
|
+
- 🐛 **Latest bug fixes**
|
|
183
|
+
- ✨ **New features and improvements**
|
|
184
|
+
- 🚀 **Performance optimizations**
|
|
185
|
+
- 🔒 **Security updates**
|
|
186
|
+
|
|
171
187
|
### GGUF Quick Start (Low VRAM)
|
|
172
188
|
```bash
|
|
173
189
|
# For systems with limited VRAM (3GB+)
|
|
@@ -99,6 +99,22 @@ curl -X POST http://localhost:8000/api/generate \
|
|
|
99
99
|
--output image.png
|
|
100
100
|
```
|
|
101
101
|
|
|
102
|
+
### 🔄 Update to Latest Version
|
|
103
|
+
|
|
104
|
+
**Always use the latest version** for the newest features and bug fixes:
|
|
105
|
+
|
|
106
|
+
```bash
|
|
107
|
+
# Update to latest version
|
|
108
|
+
pip uninstall ollamadiffuser
|
|
109
|
+
pip install --no-cache-dir ollamadiffuser
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
This ensures you get:
|
|
113
|
+
- 🐛 **Latest bug fixes**
|
|
114
|
+
- ✨ **New features and improvements**
|
|
115
|
+
- 🚀 **Performance optimizations**
|
|
116
|
+
- 🔒 **Security updates**
|
|
117
|
+
|
|
102
118
|
### GGUF Quick Start (Low VRAM)
|
|
103
119
|
```bash
|
|
104
120
|
# For systems with limited VRAM (3GB+)
|
|
@@ -4,7 +4,7 @@ OllamaDiffuser - Local AI Image Generation with Ollama-style CLI
|
|
|
4
4
|
A tool for managing and running Stable Diffusion, FLUX.1, and other AI image generation models locally.
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
__version__ = "1.2.
|
|
7
|
+
__version__ = "1.2.3"
|
|
8
8
|
__author__ = "OllamaDiffuser Team"
|
|
9
9
|
__email__ = "ollamadiffuser@gmail.com"
|
|
10
10
|
__description__ = "🎨 Local AI Image Generation with Ollama-style CLI for Stable Diffusion, FLUX.1, and LoRA support"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ollamadiffuser
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.3
|
|
4
4
|
Summary: 🎨 Local AI Image Generation with Ollama-style CLI for Stable Diffusion, FLUX.1, and LoRA support
|
|
5
5
|
Home-page: https://github.com/ollamadiffuser/ollamadiffuser
|
|
6
6
|
Author: OllamaDiffuser Team
|
|
@@ -168,6 +168,22 @@ curl -X POST http://localhost:8000/api/generate \
|
|
|
168
168
|
--output image.png
|
|
169
169
|
```
|
|
170
170
|
|
|
171
|
+
### 🔄 Update to Latest Version
|
|
172
|
+
|
|
173
|
+
**Always use the latest version** for the newest features and bug fixes:
|
|
174
|
+
|
|
175
|
+
```bash
|
|
176
|
+
# Update to latest version
|
|
177
|
+
pip uninstall ollamadiffuser
|
|
178
|
+
pip install --no-cache-dir ollamadiffuser
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
This ensures you get:
|
|
182
|
+
- 🐛 **Latest bug fixes**
|
|
183
|
+
- ✨ **New features and improvements**
|
|
184
|
+
- 🚀 **Performance optimizations**
|
|
185
|
+
- 🔒 **Security updates**
|
|
186
|
+
|
|
171
187
|
### GGUF Quick Start (Low VRAM)
|
|
172
188
|
```bash
|
|
173
189
|
# For systems with limited VRAM (3GB+)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/core/utils/controlnet_preprocessors.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/canny/geometric_shapes.png
RENAMED
|
File without changes
|
{ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/canny/house_outline.png
RENAMED
|
File without changes
|
{ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/canny/portrait_outline.png
RENAMED
|
File without changes
|
{ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/depth/linear_perspective.png
RENAMED
|
File without changes
|
{ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/depth/radial_gradient.png
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/openpose/running_pose.png
RENAMED
|
File without changes
|
{ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/openpose/sitting_pose.png
RENAMED
|
File without changes
|
{ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/openpose/standing_pose.png
RENAMED
|
File without changes
|
{ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/scribble/car_sketch.png
RENAMED
|
File without changes
|
{ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/scribble/face_sketch.png
RENAMED
|
File without changes
|
{ollamadiffuser-1.2.2 → ollamadiffuser-1.2.3}/ollamadiffuser/ui/samples/scribble/tree_sketch.png
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|