Muapi/marble-sculpture
016
1---2license: openrail++3library_name: diffusers4base_model: black-forest-labs/FLUX.1-dev5tags:6 - lora7 - text-to-image8 - flux9 - flux.1-d10pipeline_tag: text-to-image11---12 13# Marble Sculpture14 1516 17**Base model**: Flux.1 D18**Trained words**: m4rbl319 20## ๐ง Usage (Python)21 22๐ **Get your MUAPI key** from [muapi.ai/access-keys](https://muapi.ai/access-keys)23 24```python25import requests, os26url = "https://api.muapi.ai/api/v1/flux_dev_lora_image"27headers = {"Content-Type": "application/json", "x-api-key": os.getenv("MUAPIAPP_API_KEY")}28payload = {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": 134}35print(requests.post(url, headers=headers, json=payload).json())36```37 