이 프롬프트를 개발자 Console에 복사하여 직접 시도해보세요!

내용
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)