ollamadiffuser 2.0.0__tar.gz → 2.0.1__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.
Files changed (78) hide show
  1. {ollamadiffuser-2.0.0/ollamadiffuser.egg-info → ollamadiffuser-2.0.1}/PKG-INFO +5 -9
  2. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/README.md +3 -7
  3. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/__init__.py +1 -1
  4. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1/ollamadiffuser.egg-info}/PKG-INFO +5 -9
  5. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser.egg-info/requires.txt +1 -1
  6. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/pyproject.toml +2 -2
  7. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/CHANGELOG.md +0 -0
  8. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/LICENSE +0 -0
  9. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/MANIFEST.in +0 -0
  10. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/__main__.py +0 -0
  11. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/api/__init__.py +0 -0
  12. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/api/server.py +0 -0
  13. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/cli/__init__.py +0 -0
  14. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/cli/commands.py +0 -0
  15. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/cli/config_commands.py +0 -0
  16. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/cli/lora_commands.py +0 -0
  17. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/cli/main.py +0 -0
  18. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/cli/model_commands.py +0 -0
  19. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/cli/recommend_command.py +0 -0
  20. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/cli/registry_commands.py +0 -0
  21. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/__init__.py +0 -0
  22. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/config/__init__.py +0 -0
  23. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/config/model_registry.py +0 -0
  24. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/config/settings.py +0 -0
  25. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/inference/__init__.py +0 -0
  26. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/inference/base.py +0 -0
  27. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/inference/engine.py +0 -0
  28. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/inference/strategies/__init__.py +0 -0
  29. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/inference/strategies/controlnet_strategy.py +0 -0
  30. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/inference/strategies/flux_strategy.py +0 -0
  31. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/inference/strategies/generic_strategy.py +0 -0
  32. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/inference/strategies/gguf_strategy.py +0 -0
  33. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/inference/strategies/hidream_strategy.py +0 -0
  34. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/inference/strategies/sd15_strategy.py +0 -0
  35. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/inference/strategies/sd3_strategy.py +0 -0
  36. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/inference/strategies/sdxl_strategy.py +0 -0
  37. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/inference/strategies/video_strategy.py +0 -0
  38. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/models/__init__.py +0 -0
  39. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/models/gguf_loader.py +0 -0
  40. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/models/manager.py +0 -0
  41. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/utils/__init__.py +0 -0
  42. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/utils/controlnet_preprocessors.py +0 -0
  43. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/utils/download_utils.py +0 -0
  44. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/core/utils/lora_manager.py +0 -0
  45. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/mcp/__init__.py +0 -0
  46. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/mcp/server.py +0 -0
  47. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/ui/__init__.py +0 -0
  48. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/ui/samples/canny/geometric_shapes.png +0 -0
  49. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/ui/samples/canny/house_outline.png +0 -0
  50. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/ui/samples/canny/portrait_outline.png +0 -0
  51. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/ui/samples/depth/linear_perspective.png +0 -0
  52. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/ui/samples/depth/radial_gradient.png +0 -0
  53. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/ui/samples/depth/sphere_3d.png +0 -0
  54. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/ui/samples/metadata.json +0 -0
  55. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/ui/samples/openpose/running_pose.png +0 -0
  56. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/ui/samples/openpose/sitting_pose.png +0 -0
  57. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/ui/samples/openpose/standing_pose.png +0 -0
  58. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/ui/samples/scribble/car_sketch.png +0 -0
  59. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/ui/samples/scribble/face_sketch.png +0 -0
  60. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/ui/samples/scribble/tree_sketch.png +0 -0
  61. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/ui/templates/index.html +0 -0
  62. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/ui/web.py +0 -0
  63. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser/utils/__init__.py +0 -0
  64. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser.egg-info/SOURCES.txt +0 -0
  65. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser.egg-info/dependency_links.txt +0 -0
  66. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser.egg-info/entry_points.txt +0 -0
  67. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser.egg-info/not-zip-safe +0 -0
  68. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/ollamadiffuser.egg-info/top_level.txt +0 -0
  69. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/requirements.txt +0 -0
  70. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/setup.cfg +0 -0
  71. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/setup.py +0 -0
  72. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/tests/test_api_base64.py +0 -0
  73. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/tests/test_api_server.py +0 -0
  74. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/tests/test_engine.py +0 -0
  75. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/tests/test_mcp_server.py +0 -0
  76. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/tests/test_model_registry.py +0 -0
  77. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/tests/test_mps_support.py +0 -0
  78. {ollamadiffuser-2.0.0 → ollamadiffuser-2.0.1}/tests/test_settings.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ollamadiffuser
3
- Version: 2.0.0
3
+ Version: 2.0.1
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.13.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
- ### ⚠️ Project Status: Maintenance Mode
84
+ ### Project Status: Active Development
85
85
 
86
- **Thank you for the incredible support and over 5,000 downloads!**
86
+ **Thank you for the incredible support and over 11,000 downloads!**
87
87
 
88
- Please be aware that `ollamadiffuser` is currently in **maintenance mode**. Due to the creator's other professional commitments, active feature development has been paused.
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,12 +1,8 @@
1
- ### ⚠️ Project Status: Maintenance Mode
1
+ ### Project Status: Active Development
2
2
 
3
- **Thank you for the incredible support and over 5,000 downloads!**
3
+ **Thank you for the incredible support and over 11,000 downloads!**
4
4
 
5
- Please be aware that `ollamadiffuser` is currently in **maintenance mode**. Due to the creator's other professional commitments, active feature development has been paused.
6
-
7
- 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.
8
-
9
- This project laid the foundation for a more ambitious vision: **[LocalKinAI](https://github.com/LocalKinAI)**. Thank you for being part of the journey.
5
+ `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.
10
6
 
11
7
  # OllamaDiffuser 🎨
12
8
 
@@ -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.0"
7
+ __version__ = "2.0.1"
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: 2.0.0
3
+ Version: 2.0.1
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.13.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
- ### ⚠️ Project Status: Maintenance Mode
84
+ ### Project Status: Active Development
85
85
 
86
- **Thank you for the incredible support and over 5,000 downloads!**
86
+ **Thank you for the incredible support and over 11,000 downloads!**
87
87
 
88
- Please be aware that `ollamadiffuser` is currently in **maintenance mode**. Due to the creator's other professional commitments, active feature development has been paused.
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
 
@@ -15,7 +15,7 @@ safetensors>=0.4.0
15
15
  python-multipart>=0.0.0
16
16
  psutil>=5.9.0
17
17
  jinja2>=3.0.0
18
- peft>=0.13.0
18
+ peft>=0.17.0
19
19
  numpy>=1.26.0
20
20
  controlnet-aux>=0.0.7
21
21
  opencv-python>=4.8.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "ollamadiffuser"
7
- version = "2.0.0"
7
+ version = "2.0.1"
8
8
  authors = [
9
9
  {name = "OllamaDiffuser Team", email = "ollamadiffuser@gmail.com"}
10
10
  ]
@@ -65,7 +65,7 @@ dependencies = [
65
65
  "python-multipart>=0.0.0",
66
66
  "psutil>=5.9.0",
67
67
  "jinja2>=3.0.0",
68
- "peft>=0.13.0",
68
+ "peft>=0.17.0",
69
69
  "numpy>=1.26.0",
70
70
  "controlnet-aux>=0.0.7",
71
71
  "opencv-python>=4.8.0",
File without changes
File without changes
File without changes