ollamadiffuser 2.0.0__py3-none-any.whl → 2.0.2__py3-none-any.whl
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/__init__.py +1 -1
- ollamadiffuser/core/inference/strategies/flux_strategy.py +8 -1
- ollamadiffuser/core/inference/strategies/hidream_strategy.py +5 -1
- {ollamadiffuser-2.0.0.dist-info → ollamadiffuser-2.0.2.dist-info}/METADATA +5 -9
- {ollamadiffuser-2.0.0.dist-info → ollamadiffuser-2.0.2.dist-info}/RECORD +9 -9
- {ollamadiffuser-2.0.0.dist-info → ollamadiffuser-2.0.2.dist-info}/WHEEL +0 -0
- {ollamadiffuser-2.0.0.dist-info → ollamadiffuser-2.0.2.dist-info}/entry_points.txt +0 -0
- {ollamadiffuser-2.0.0.dist-info → ollamadiffuser-2.0.2.dist-info}/licenses/LICENSE +0 -0
- {ollamadiffuser-2.0.0.dist-info → ollamadiffuser-2.0.2.dist-info}/top_level.txt +0 -0
ollamadiffuser/__init__.py
CHANGED
|
@@ -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__ = "2.0.
|
|
7
|
+
__version__ = "2.0.2"
|
|
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"
|
|
@@ -38,6 +38,11 @@ class FluxStrategy(InferenceStrategy):
|
|
|
38
38
|
if device == "cpu":
|
|
39
39
|
load_kwargs["torch_dtype"] = torch.float32
|
|
40
40
|
logger.warning("FLUX on CPU will be very slow for this 12B parameter model")
|
|
41
|
+
elif device == "mps":
|
|
42
|
+
# MPS has limited bfloat16 support; float16 avoids VAE decode crashes
|
|
43
|
+
load_kwargs["torch_dtype"] = torch.float16
|
|
44
|
+
load_kwargs["use_safetensors"] = True
|
|
45
|
+
load_kwargs["low_cpu_mem_usage"] = True
|
|
41
46
|
else:
|
|
42
47
|
load_kwargs["torch_dtype"] = torch.bfloat16
|
|
43
48
|
load_kwargs["use_safetensors"] = True
|
|
@@ -102,7 +107,9 @@ class FluxStrategy(InferenceStrategy):
|
|
|
102
107
|
|
|
103
108
|
max_seq_len = kwargs.get("max_sequence_length", params.get("max_sequence_length", 512))
|
|
104
109
|
|
|
105
|
-
generator
|
|
110
|
+
# CPU offload moves tensors between CPU/device; use CPU generator to avoid device mismatches
|
|
111
|
+
gen_device = "cpu" if self.device == "mps" else self.device
|
|
112
|
+
generator, used_seed = self._make_generator(seed, gen_device)
|
|
106
113
|
|
|
107
114
|
gen_kwargs = {
|
|
108
115
|
"prompt": prompt,
|
|
@@ -34,6 +34,9 @@ class HiDreamStrategy(InferenceStrategy):
|
|
|
34
34
|
load_kwargs = {**SAFETY_DISABLED_KWARGS}
|
|
35
35
|
if device == "cpu":
|
|
36
36
|
load_kwargs["torch_dtype"] = torch.float32
|
|
37
|
+
elif device == "mps":
|
|
38
|
+
load_kwargs["torch_dtype"] = torch.float16
|
|
39
|
+
load_kwargs["low_cpu_mem_usage"] = True
|
|
37
40
|
else:
|
|
38
41
|
load_kwargs["torch_dtype"] = torch.bfloat16
|
|
39
42
|
|
|
@@ -77,7 +80,8 @@ class HiDreamStrategy(InferenceStrategy):
|
|
|
77
80
|
guidance = guidance_scale if guidance_scale is not None else params.get("guidance_scale", 5.0)
|
|
78
81
|
max_seq_len = kwargs.get("max_sequence_length", params.get("max_sequence_length", 128))
|
|
79
82
|
|
|
80
|
-
|
|
83
|
+
gen_device = "cpu" if self.device == "mps" else self.device
|
|
84
|
+
generator, used_seed = self._make_generator(seed, gen_device)
|
|
81
85
|
|
|
82
86
|
gen_kwargs = {
|
|
83
87
|
"prompt": prompt,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ollamadiffuser
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: Local AI Image Generation with Ollama-style CLI for Stable Diffusion, FLUX, and LoRA support
|
|
5
5
|
Home-page: https://github.com/ollamadiffuser/ollamadiffuser
|
|
6
6
|
Author: OllamaDiffuser Team
|
|
@@ -50,7 +50,7 @@ Requires-Dist: safetensors>=0.4.0
|
|
|
50
50
|
Requires-Dist: python-multipart>=0.0.0
|
|
51
51
|
Requires-Dist: psutil>=5.9.0
|
|
52
52
|
Requires-Dist: jinja2>=3.0.0
|
|
53
|
-
Requires-Dist: peft>=0.
|
|
53
|
+
Requires-Dist: peft>=0.17.0
|
|
54
54
|
Requires-Dist: numpy>=1.26.0
|
|
55
55
|
Requires-Dist: controlnet-aux>=0.0.7
|
|
56
56
|
Requires-Dist: opencv-python>=4.8.0
|
|
@@ -81,15 +81,11 @@ Dynamic: home-page
|
|
|
81
81
|
Dynamic: license-file
|
|
82
82
|
Dynamic: requires-python
|
|
83
83
|
|
|
84
|
-
###
|
|
84
|
+
### Project Status: Active Development
|
|
85
85
|
|
|
86
|
-
**Thank you for the incredible support and over
|
|
86
|
+
**Thank you for the incredible support and over 11,000 downloads!**
|
|
87
87
|
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
The project in its current state is stable and will remain available for use. However, new features will not be added, and non-critical issues may not be addressed in the near future.
|
|
91
|
-
|
|
92
|
-
This project laid the foundation for a more ambitious vision: **[LocalKinAI](https://github.com/LocalKinAI)**. Thank you for being part of the journey.
|
|
88
|
+
`ollamadiffuser` is back in **active development**. v2.0 brings a major architecture overhaul, 21 new models, MCP/OpenClaw integration, and Apple Silicon support. Part of the **[LocalKinAI](https://github.com/LocalKinAI)** ecosystem.
|
|
93
89
|
|
|
94
90
|
# OllamaDiffuser 🎨
|
|
95
91
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
ollamadiffuser/__init__.py,sha256=
|
|
1
|
+
ollamadiffuser/__init__.py,sha256=ttoqBNclEGBl4Kq3KZMF8-W1czx_ZZlD6NnbXfMuvOc,1127
|
|
2
2
|
ollamadiffuser/__main__.py,sha256=tNWMvEHq4ddtKLp7DrhIoOdnFw3F8RNrETC_u5xpkFI,141
|
|
3
3
|
ollamadiffuser/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
ollamadiffuser/api/server.py,sha256=MqEKjckz8x8pU9dhZlLXET5XWt7ERfVcAfvdVfDLFWw,15464
|
|
@@ -19,10 +19,10 @@ ollamadiffuser/core/inference/base.py,sha256=AyoM6j37nhhh5RXQeH9Ycn9x1_eRPQQfC5n
|
|
|
19
19
|
ollamadiffuser/core/inference/engine.py,sha256=xUCSQmGke9yAIoKGzh9jRaH1XE3GP9-uGM2hseuUzao,8139
|
|
20
20
|
ollamadiffuser/core/inference/strategies/__init__.py,sha256=5LQgTeS5JVin-HiGX7UvjlPzd0awombKrNhvAVr3SSw,53
|
|
21
21
|
ollamadiffuser/core/inference/strategies/controlnet_strategy.py,sha256=_lGlCaYhrrdn7N6Aw0X9a4L90wKPjCrr6EBfQqPVH2E,6712
|
|
22
|
-
ollamadiffuser/core/inference/strategies/flux_strategy.py,sha256=
|
|
22
|
+
ollamadiffuser/core/inference/strategies/flux_strategy.py,sha256=aj1tHZcE-QDyMK6_kOw9voPFCM7Gbw_fCqY3QTGRhNU,5673
|
|
23
23
|
ollamadiffuser/core/inference/strategies/generic_strategy.py,sha256=fGD4nnUspSlOtK7XWTjDJRRN5uDfQIQIuefBJSJhCEA,6843
|
|
24
24
|
ollamadiffuser/core/inference/strategies/gguf_strategy.py,sha256=kIGT85tDCcSsliXdaxEJoQz4Gm7Xt7TfEcu6xcmTvJg,3893
|
|
25
|
-
ollamadiffuser/core/inference/strategies/hidream_strategy.py,sha256=
|
|
25
|
+
ollamadiffuser/core/inference/strategies/hidream_strategy.py,sha256=uzpO09IbDjqgqYQ9xJNxE2BIWpkIWzjWvGotBvSbT1I,3923
|
|
26
26
|
ollamadiffuser/core/inference/strategies/sd15_strategy.py,sha256=qz5eGA2xkcA_3oNywP-rCliXzP7jYpH60728QmOT5fw,4966
|
|
27
27
|
ollamadiffuser/core/inference/strategies/sd3_strategy.py,sha256=6DjWebeyjaH7jiRm8hf2ismkJ3Gth69u71enVgMMPi8,2772
|
|
28
28
|
ollamadiffuser/core/inference/strategies/sdxl_strategy.py,sha256=tslfENJIvEhDuj1D6aClFF6hv8i0JO2PukFQZsTCwQY,5137
|
|
@@ -53,9 +53,9 @@ ollamadiffuser/ui/samples/scribble/face_sketch.png,sha256=MVVYy_aS48xoS_RnIDzLUa
|
|
|
53
53
|
ollamadiffuser/ui/samples/scribble/tree_sketch.png,sha256=3P-NGgW25xRwreDxiBYKcDhd2oHZAwKSkjNVM5oPTWY,3017
|
|
54
54
|
ollamadiffuser/ui/templates/index.html,sha256=XcrYZqtDR65dAiu959Ea19t3MbtYmXl9PVyMnR1Telk,42358
|
|
55
55
|
ollamadiffuser/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
56
|
-
ollamadiffuser-2.0.
|
|
57
|
-
ollamadiffuser-2.0.
|
|
58
|
-
ollamadiffuser-2.0.
|
|
59
|
-
ollamadiffuser-2.0.
|
|
60
|
-
ollamadiffuser-2.0.
|
|
61
|
-
ollamadiffuser-2.0.
|
|
56
|
+
ollamadiffuser-2.0.2.dist-info/licenses/LICENSE,sha256=cnGL9l2P510Uk3TCnv62kot6vAfdSawhOZh7Y-oYoIE,1071
|
|
57
|
+
ollamadiffuser-2.0.2.dist-info/METADATA,sha256=nyJc5mp5MCZsKCAoFkWVv-oFOf2xgzgUkLEn-30uQA4,31097
|
|
58
|
+
ollamadiffuser-2.0.2.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
59
|
+
ollamadiffuser-2.0.2.dist-info/entry_points.txt,sha256=Bp-ZzV3F7QpQu02Mcafeza-oTMjDslomz9qrhvfcQUA,116
|
|
60
|
+
ollamadiffuser-2.0.2.dist-info/top_level.txt,sha256=97wOGgTCxDE765Nr_o7B4Kwr_M_jy8fCCeQ81sMKlC4,15
|
|
61
|
+
ollamadiffuser-2.0.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|