将此提示复制到我们的开发者Console中亲自尝试!

角色内容
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-3-5-sonnet-20241022",
  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)