Muapi commited on
Commit
80c053e
·
verified ·
1 Parent(s): 59ca39b

Add Flatlined [Flux]

Browse files
Files changed (3) hide show
  1. README.md +36 -0
  2. flatlined-flux.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
+ # Flatlined [Flux]
14
+
15
+ ![preview](./preview.jpg)
16
+
17
+ **Base model**: Flux.1 D
18
+ **Trained words**: flatlined
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:740860@828497", "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
+ ```
flatlined-flux.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9998f0de13b9d26b168c354149ecb956ccf011cc0a2bf31537008fd06fcbc4e0
3
+ size 171969479
preview.jpg ADDED