<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.stoney-cloud.com/w/index.php?action=history&amp;feed=atom&amp;title=AI_on_demand%3A_black-forest-labs%2FFLUX.1-schnell</id>
	<title>AI on demand: black-forest-labs/FLUX.1-schnell - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.stoney-cloud.com/w/index.php?action=history&amp;feed=atom&amp;title=AI_on_demand%3A_black-forest-labs%2FFLUX.1-schnell"/>
	<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=AI_on_demand:_black-forest-labs/FLUX.1-schnell&amp;action=history"/>
	<updated>2026-07-21T22:52:35Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.6</generator>
	<entry>
		<id>https://wiki.stoney-cloud.com/w/index.php?title=AI_on_demand:_black-forest-labs/FLUX.1-schnell&amp;diff=1107&amp;oldid=prev</id>
		<title>Sst-yde: Created page with &quot;== Calling the model == &lt;syntaxhighlight lang=&quot;bash&quot;&gt; # Set your personal key: STONEY_KEY=sk-...  # Set the desired model: MODEL=black-forest-labs/FLUX.1-schnell  # Set your prompt: PROMPT=&#039;Create a photorealistic picture of some cats.&#039;  # Size of the generated image (WIDTHxHEIGHT): SIZE=1024x1024  # Number of inference steps: STEPS=4  curl https://llm.stoney-cloud.com/v1/images/generations \         --silent --fail --show-error \         --header &quot;Authorization: Bearer...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.stoney-cloud.com/w/index.php?title=AI_on_demand:_black-forest-labs/FLUX.1-schnell&amp;diff=1107&amp;oldid=prev"/>
		<updated>2026-07-21T15:15:00Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;== Calling the model == &amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt; # Set your personal key: STONEY_KEY=sk-...  # Set the desired model: MODEL=black-forest-labs/FLUX.1-schnell  # Set your prompt: PROMPT=&amp;#039;Create a photorealistic picture of some cats.&amp;#039;  # Size of the generated image (WIDTHxHEIGHT): SIZE=1024x1024  # Number of inference steps: STEPS=4  curl https://llm.stoney-cloud.com/v1/images/generations \         --silent --fail --show-error \         --header &amp;quot;Authorization: Bearer...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Calling the model ==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# Set your personal key:&lt;br /&gt;
STONEY_KEY=sk-...&lt;br /&gt;
&lt;br /&gt;
# Set the desired model:&lt;br /&gt;
MODEL=black-forest-labs/FLUX.1-schnell&lt;br /&gt;
&lt;br /&gt;
# Set your prompt:&lt;br /&gt;
PROMPT=&amp;#039;Create a photorealistic picture of some cats.&amp;#039;&lt;br /&gt;
&lt;br /&gt;
# Size of the generated image (WIDTHxHEIGHT):&lt;br /&gt;
SIZE=1024x1024&lt;br /&gt;
&lt;br /&gt;
# Number of inference steps:&lt;br /&gt;
STEPS=4&lt;br /&gt;
&lt;br /&gt;
curl https://llm.stoney-cloud.com/v1/images/generations \&lt;br /&gt;
        --silent --fail --show-error \&lt;br /&gt;
        --header &amp;quot;Authorization: Bearer $STONEY_KEY&amp;quot; \&lt;br /&gt;
        --header &amp;#039;Content-Type: application/json&amp;#039; \&lt;br /&gt;
        --data &amp;#039;{&lt;br /&gt;
                &amp;quot;model&amp;quot;: &amp;quot;&amp;#039;&amp;quot;$MODEL&amp;quot;&amp;#039;&amp;quot;,&lt;br /&gt;
                &amp;quot;prompt&amp;quot;: &amp;quot;&amp;#039;&amp;quot;$PROMPT&amp;quot;&amp;#039;&amp;quot;,&lt;br /&gt;
                &amp;quot;size&amp;quot;: &amp;quot;&amp;#039;&amp;quot;$SIZE&amp;quot;&amp;#039;&amp;quot;,&lt;br /&gt;
                &amp;quot;num_inference_steps&amp;quot;: &amp;#039;&amp;quot;$STEPS&amp;quot;&amp;#039;&lt;br /&gt;
        }&amp;#039; \&lt;br /&gt;
        | jq&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example output (cropped):&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
  &amp;quot;created&amp;quot;: 1784646324,&lt;br /&gt;
  &amp;quot;data&amp;quot;: [&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;b64_json&amp;quot;: &amp;quot;iVBORw0KGgoAAAANSUhEUgAABAAAAAQACAIAAADwf7zUAAEAAElEQVR4AQALhP[...]AQABAP8AAP8B/v79AfANpMANoyqSAAAAAElFTkSuQmCC&amp;quot;,&lt;br /&gt;
      &amp;quot;url&amp;quot;: null,&lt;br /&gt;
      &amp;quot;revised_prompt&amp;quot;: null&lt;br /&gt;
    }&lt;br /&gt;
  ],&lt;br /&gt;
  &amp;quot;output_format&amp;quot;: &amp;quot;png&amp;quot;,&lt;br /&gt;
  &amp;quot;size&amp;quot;: &amp;quot;1024x1024&amp;quot;,&lt;br /&gt;
  &amp;quot;cot_output&amp;quot;: null&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The resulting image is returned as a Base64-encoded string inside &amp;lt;code&amp;gt;data[0].b64_json&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[[Category:AI on demand]]&lt;/div&gt;</summary>
		<author><name>Sst-yde</name></author>
	</entry>
</feed>