Muapi commited on
Commit
8ce52c4
·
verified ·
1 Parent(s): 827fcde

Add Marble Sculpture

Browse files
Files changed (3) hide show
  1. README.md +36 -0
  2. marble-sculpture.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
+ # Marble Sculpture
14
+
15
+ ![preview](./preview.jpg)
16
+
17
+ **Base model**: Flux.1 D
18
+ **Trained words**: m4rbl3
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:1228907@1384704", "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
+ ```
marble-sculpture.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fad08b0f5fd9165cad7cea0e04efbfbc7430c629460f2cd429ea4d337358026b
3
+ size 19302872
preview.jpg ADDED