README
Browse files
README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Fox Image 1.0
|
| 2 |
+
|
| 3 |
+
Realistic local image generation tool for OpenClaw AI assistant.
|
| 4 |
+
|
| 5 |
+
## Features
|
| 6 |
+
- **Model:** Stable Diffusion 1.5
|
| 7 |
+
- **Realistic generation** with custom negative prompts
|
| 8 |
+
- **OpenClaw compatible** - works as exec tool
|
| 9 |
+
- **GPU accelerated**
|
| 10 |
+
|
| 11 |
+
## Usage
|
| 12 |
+
|
| 13 |
+
```python
|
| 14 |
+
from fox_image import generate_image
|
| 15 |
+
|
| 16 |
+
result = generate_image(
|
| 17 |
+
prompt="a realistic photo of a cat",
|
| 18 |
+
width=512,
|
| 19 |
+
height=512,
|
| 20 |
+
steps=25
|
| 21 |
+
)
|
| 22 |
+
print(result)
|
| 23 |
+
```
|
| 24 |
+
|
| 25 |
+
## OpenClaw Integration
|
| 26 |
+
Add to your agent as exec tool that calls this script.
|
| 27 |
+
|
| 28 |
+
## Requirements
|
| 29 |
+
- Python 3.10+
|
| 30 |
+
- PyTorch + Diffusers
|
| 31 |
+
- 4GB+ GPU
|
| 32 |
+
|
| 33 |
+
License: MIT
|