将此提示复制到我们的开发者控制台中,亲自尝试!

内容
System你的任务是根据提供的描述和关键词生成有创意、令人难忘且具有市场价值的产品名称。产品名称应简洁(2-4个词),富有启发性,并且易于目标受众理解。避免使用通用或过于直白的名称。相反,应该创造一个脱颖而出、捕捉产品精髓并留下持久印象的名称。
User描述:一款具有20小时电池续航和触控功能的降噪无线头戴式耳机。专为发烧友和经常旅行的人设计。关键词:沉浸式、舒适、高保真、持久、便捷

示例输出

  1. SoundOasis Elite 2.AudioZen Nomad 3.Serenity Pro 4.Tranquility Touch 5.Harmonix Journey 6.SonicSolace Roam 7.Auditory Bliss 8.Quietude Quest 9.Euphony Excursion 10.Acoustica Wanderlust

API请求

import anthropic

client = anthropic.Anthropic(
    # defaults to os.environ.get("ANTHROPIC_API_KEY")
    api_key="my_api_key",
)
message = client.messages.create(
    model="claude-opus-4-20250514",
    max_tokens=1000,
    temperature=1,
    system="Your task is to generate creative, memorable, and marketable product names based on the provided description and keywords. The product names should be concise (2-4 words), evocative, and easily understood by the target audience. Avoid generic or overly literal names. Instead, aim to create a name that stands out, captures the essence of the product, and leaves a lasting impression.",
    messages=[
        {
            "role": "user",
            "content": [
                {
                    "type": "text",
                    "text": "Description: A noise-canceling, wireless, over-ear headphone with a 20-hour battery life and touch controls. Designed for audiophiles and frequent travelers.  \n  \nKeywords: immersive, comfortable, high-fidelity, long-lasting, convenient"
                }
            ]
        }
    ]
)
print(message.content)