Muapi/soldato-romano
013
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# Soldato romano15 1617 18**Base model**: Flux.1 D 19**Trained words**: Gladiator, Roman Empire, Colosseum, ancient Rome, Roman armor, crested helmet, gladius sword, red cape, ornate chestplate, Roman shield, stone arches, bronze and leather armor, battle debris, grand architecture, ancient cityscape, Roman legions, emperors, marble statues, temples, Roman columns, sunlight and dust, cheering crowds, historical regalia.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:952381@1066271", "weight": 1.0}],32 "width": 1024,33 "height": 1024,34 "num_images": 135}36print(requests.post(url, headers=headers, json=payload).json())37```38 