New reasoning model is online: UnieAI U1

Slogan Generation

Let the model generate catchy and creative slogans based on product or event information.

Prompt



Tips 💡

Provide Clear Product Information

Describe the product type, brand positioning, and target audience to make the slogan more relevant. For example: "This is a high-protein, low-fat Greek yogurt targeted at fitness enthusiasts."

Specify Tone or Style

You can specify a casual, lively tone, or a more professional, sophisticated one. For example: "Please use a high-end, minimalist tone, suitable for discerning consumers."

Incorporate Brand Philosophy or Core Values

If the brand has specific values (such as natural, pure, eco-friendly), include them in the slogan. For example: "Emphasizing a no-additives, all-natural product."

Keep It Rhythmic, Short, and Memorable

The slogan should be concise, punchy, and easy to remember. You can mention: "Please keep it under 12 words, and ensure it’s catchy and rhyming."

  • 📢 Advertising slogans
  • 🏷️ Product packaging copy
  • 🎙️ Event slogans and brand taglines
  • 🎥 Social media posts or short video slogans
  • 🛒 E-commerce platform product highlights

Code Example

from openai import OpenAI
 
client = OpenAI(
    base_url="https://api.unieai.com/",
    api_key="<YOUR_API_KEY>"
)
 
completion = client.chat.completions.create(
    model="UnieAI.u1-2503",
    messages=[
        {
            "role": "system",
            "content": "You are a slogan expert. Based on the user's needs, design a unique and eye-catching slogan that aligns with the core values and features of the product/event. The slogan should trigger potential customer interest, leave a lasting impression, and use creative expression such as metaphors, wordplay, or other rhetorical techniques. Ensure the slogan is short, clear, catchy, easy to understand, memorable, and rhyming without being too formal. Only output the slogan, no explanations."
        },
        {
            "role": "user",
            "content": "Please generate a slogan for 'Greek Yogurt.'"
        }
    ]
)
 
print(completion.choices[0].message.content)

On this page