このプロンプトを開発者Consoleにコピーして試してみてください!

役割内容
User複雑で創造的な早口言葉を生成してください。言いにくいだけでなく、魅力的で楽しく、できれば面白い早口言葉を作ることを目指してください。言葉遊び、韻、頭韻を取り入れて、早口言葉の難しさと楽しさを高めることを検討してください。

出力例

早口言葉1:
賢いトガリネズミが光る輝く靴を噛み砕いた。

早口言葉2:
さわやかな風が青い血統の、おしゃべりなヒヒの傍を吹き抜けた。

早口言葉3:
困惑した笛吹きが笛の練習をしながら、漬けたピーマンを一かじり摘んだ。

早口言葉4:
6台のスマートで滑らかな細身のそりが、急な雪の斜面を素早く滑り降りた。


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": "Generate complex and creative tongue twisters. Aim to create tongue twisters that are not only challenging to say but also engaging, entertaining, and potentially humorous. Consider incorporating wordplay, rhyme, and alliteration to enhance the difficulty and enjoyment of the tongue twisters."
        }
      ]
    }
  ]
)
print(message.content)