Muapi/mtf-sequence
09
1---2license: openrail++3library_name: diffusers4base_model: black-forest-labs/FLUX.1-dev5tags:6 - lora7 - text-to-image8 - stable-diffusion9 - flux10 - flux.1-d11pipeline_tag: text-to-image12---13 14# MtF sequence15 1617 18**Base model**: Flux.1 D19**Trained words**: 20 21## ๐ง Usage (Python)22 23๐ **Get your MUAPI key** from [muapi.ai/access-keys](https://muapi.ai/access-keys)24 25```python26import requests, os27url = "https://api.muapi.ai/api/v1/flux_dev_lora_image"28headers = {"Content-Type": "application/json", "x-api-key": os.getenv("MUAPIAPP_API_KEY")}29payload = {30 "prompt": "masterpiece, best quality, 1girl, looking at viewer",31 "model_id": [{"model": "civitai:833491@932489", "weight": 1.0}],32 "width": 1024,33 "height": 1024,34 "num_images": 135}36print(requests.post(url, headers=headers, json=payload).json())37```38 