Spaces:
Runtime error
Runtime error
| from diffusers import DiffusionPipeline | |
| pipeline = DiffusionPipeline.from_pretrained("shakker-Labs/Flux1-dev-LoRA-AntiBlur") | |
| def generate_output(): | |
| output = pipeline("Your input prompt here") | |
| return output | |
| if __name__ == "__main__": | |
| result = generate_output() | |
| print(result) |