Back to Mistral Rs

flux

docs/src/content/docs/examples/server/flux.md

0.8.10537 B
Original Source
<!-- generated by docs/scripts/render_examples.py; edit the source example instead -->

Runnable HTTP server example flux.

<!-- needs-header -->
python
from openai import OpenAI

client = OpenAI(api_key="foobar", base_url="http://localhost:1234/v1/")

result = client.images.generate(
    model="default",
    prompt="A vibrant sunset in the mountains, 4k, high quality.",
    n=1,
)
print(result.data[0].url)

Source: examples/server/flux.py