> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bfl.ml/llms.txt
> Use this file to discover all available pages before exploring further.

# World Knowledge

> Leveraging FLUX's world knowledge in image generation

export const PromptDisplay = ({prompt}) => {
  const [copied, setCopied] = useState(false);
  const copy = () => {
    navigator.clipboard.writeText(prompt);
    setCopied(true);
    setTimeout(() => setCopied(false), 2000);
  };
  return <div className="not-prose" style={{
    marginTop: "1rem"
  }}>
      <div style={{
    backgroundColor: "#1a1a1a",
    borderRadius: "1rem",
    padding: "1.25rem 1.5rem",
    display: "flex",
    flexDirection: "column",
    gap: "1rem"
  }}>
        <p style={{
    color: "#e5e5e5",
    fontSize: "1rem",
    lineHeight: 1.6,
    margin: 0,
    fontFamily: "inherit"
  }}>
          {prompt}
        </p>
        <div style={{
    display: "flex",
    justifyContent: "flex-end"
  }}>
          <button onClick={copy} style={{
    backgroundColor: copied ? "#3d8a5b" : "var(--aspen-evergreen, #486A58)",
    color: "#fff",
    border: "none",
    borderRadius: "0.375rem",
    padding: "0.25rem 0.6rem",
    fontSize: "0.7rem",
    fontWeight: 600,
    cursor: "pointer",
    transition: "background-color 0.2s"
  }}>
            {copied ? "Copied!" : "Copy prompt"}
          </button>
        </div>
      </div>
    </div>;
};

FLUX models encode extensive world knowledge — landmarks, architectural styles, cultural references, and geographic features. Simply name a real place or concept, and the model renders it with remarkable accuracy.

## Examples

<Columns cols={2}>
  <div>
    <img src="https://cdn.sanity.io/images/2gpum2i6/production/e9a562af9dc1703faf1ceb1b6ea7c346b25ba564-1920x1072.png" alt="Vik Church in Iceland at night" />

    <PromptDisplay prompt="The Vik Church in Iceland, with a dark blue sky and mountains with snow in the background, is captured in this night photography. The color scheme features white and red, and the high-resolution photography showcases a real photo style with a bird's eye view of the houses at the foot of the mountain." />
  </div>

  <div>
    <img src="https://cdn.sanity.io/images/2gpum2i6/production/9e5ef8509606bea2663f26bb7dd767936b2a5bd0-1888x1056.png" alt="Sheikh Zayed Grand Mosque with child running" />

    <PromptDisplay prompt="A boy in a white thobe runs across the marble courtyard of the Sheikh Zayed Grand Mosque in Abu Dhabi at midday. The reflective white marble surface mirrors the arched colonnades and central dome above. Harsh noon sun. Stark white, pale sky blue, soft shadow geometry. Wide angle, low angle, figure small in frame." />
  </div>

  <div>
    <img src="https://cdn.sanity.io/images/2gpum2i6/production/23f805935772d6a4923405117c8052d94e879bd7-1888x1056.png" alt="Mount Fuji in Ukiyo-e woodblock print style" />

    <PromptDisplay prompt="Ukiyo-e woodblock print style of Mount Fuji with cherry blossoms, showing characteristic flat colors, bold outlines, and traditional composition" />
  </div>

  <div>
    <img src="https://cdn.sanity.io/images/2gpum2i6/production/0357c7777048bc923cced62fad7da3c8030b44ff-1888x1056.png" alt="Tibetan monk with prayer wheels" />

    <PromptDisplay prompt="An elderly Tibetan monk in burgundy and saffron robes turns a row of copper prayer wheels along the outer wall of the Jokhang Temple in Lhasa. Late afternoon sidelight. Stone wall worn smooth. Shadow falls long across the flagstone floor. Warm ochre, aged copper, deep burgundy." />
  </div>
</Columns>
