將此提示複製到我們的開發者控制台中親自試用!
角色內容
用戶幫我創造一些比喻來描述一個人歡樂且具有感染力的笑聲?

範例輸出

  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-sonnet-4-5",
  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)