將此提示複製到我們的開發者控制台中,親自試試看!

內容
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)