Error: "AutoPipeline can't find a pipeline linked to AuraFlowPipeline for None"

#28
by aimpellitteri1 - opened

I am encountering an error while trying to access an image model using the Hugging Face serverless inference API. The error message I receive is as follows:

{'error': "AutoPipeline can't find a pipeline linked to AuraFlowPipeline for None"}

fal org
This comment has been hidden

You can use AuraFlow ZeroGPU space via API

from gradio_client import Client

client = Client("multimodalart/AuraFlow")
result = client.predict(
        prompt="Hello!!",
        negative_prompt="Hello!!",
        seed=0,
        randomize_seed=True,
        width=1024,
        height=1024,
        guidance_scale=5,
        num_inference_steps=28,
        model_version="0.2",
        comparison_mode=False,
        api_name="/infer"
)
print(result)

Sign up or log in to comment