CoolFace
Modelpublic

Muapi/bonnie-rabbit

sourceHugging Faceopenrail++updated 4mo agoView on Hugging Face
0likes15downloads
README.md39 linesDownload Raw Back to root
1---2license: openrail++3library_name: diffusers4base_model: Lightricks/LTX-Video5tags:6  - lora7  - text-to-video8  - ltx9  - ltx-video10  - ltxv-2.311pipeline_tag: text-to-video12---13 14# Bonnie Rabbit15 16![preview](./preview.jpg)17 18**Base model**: LTXV 2.319**Trained words**: bonnie_rabbit20 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/ltx_lora_video"28headers = {"Content-Type": "application/json", "x-api-key": os.getenv("MUAPIAPP_API_KEY")}29payload = {30    "prompt": "masterpiece, best quality",31    "lora_model": "bonnie-rabbit",32    "lora_strength": 1.0,33    "width": 768,34    "height": 512,35    "num_frames": 9736}37print(requests.post(url, headers=headers, json=payload).json())38```39