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

役割内容
User楽しく人に伝染するような笑い声を表現するいくつかの直喩を作成するのを手伝ってください。

出力例

  1. 彼の笑い声は、新しく開けられたシャンパンのボトルのように弾け、生き生きとして活気に満ちていた。
  2. 彼らの笑い声は、肌寒い夜の暖かく居心地の良い暖炉のように、人々を引き寄せて喜びを分かち合わせた。

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,
  messages=[
    {
      "role": "user",
      "content": [
        {
          "type": "text",
          "text": "Help me create some similes to describe a person's laughter that is joyful and contagious?"
        }
      ]
    }
  ]
)
print(message.content)