While E2B prompts ask the model to list ten brands associated with a specific entity concept, B2E prompts reverse the direction by asking for ten attributes, products, or concepts associated with a given brand name.

flowchart LR
    subgraph E2B [Entity to Brand: E2B]
      E[Entity Concept] -->|Query LLM| B1[Brand 1]
      E -->|Query LLM| B2[Brand 2]
    end
    subgraph B2E [Brand to Entity: B2E]
      BR[Brand Name] -->|Query LLM| C1[Concept / Product 1]
      BR -->|Query LLM| C2[Concept / Product 2]
    end