Muapi commited on
Commit
5a50f37
·
verified ·
1 Parent(s): 2b6e756

Add Chastity Cage

Browse files
Files changed (3) hide show
  1. README.md +36 -0
  2. chastity-cage.safetensors +3 -0
  3. preview.jpg +0 -0
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: openrail++
3
+ library_name: diffusers
4
+ base_model: black-forest-labs/FLUX.1-dev
5
+ tags:
6
+ - lora
7
+ - text-to-image
8
+ - flux
9
+ - flux.1-d
10
+ pipeline_tag: text-to-image
11
+ ---
12
+
13
+ # Chastity Cage
14
+
15
+ ![preview](./preview.jpg)
16
+
17
+ **Base model**: Flux.1 D
18
+ **Trained words**:
19
+
20
+ ## 🧠 Usage (Python)
21
+
22
+ 🔑 **Get your MUAPI key** from [muapi.ai/access-keys](https://muapi.ai/access-keys)
23
+
24
+ ```python
25
+ import requests, os
26
+ url = "https://api.muapi.ai/api/v1/flux_dev_lora_image"
27
+ headers = {"Content-Type": "application/json", "x-api-key": os.getenv("MUAPIAPP_API_KEY")}
28
+ payload = {
29
+ "prompt": "masterpiece, best quality, 1girl, looking at viewer",
30
+ "model_id": [{"model": "civitai:1049954@1178129", "weight": 1.0}],
31
+ "width": 1024,
32
+ "height": 1024,
33
+ "num_images": 1
34
+ }
35
+ print(requests.post(url, headers=headers, json=payload).json())
36
+ ```
chastity-cage.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:551066a698ee41da235cc3520f6592e891aa44b9ae4f303c7bfea64fb08c2ea2
3
+ size 19291328
preview.jpg ADDED