このプロンプトを開発者Consoleにコピーして、自分で試してみましょう!

Content
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)