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

Content
Systemあなたの任務は、提供されたテキストを3〜5年生の若い学習者が読んで理解しやすいように書き直すことです。高度な語彙を簡略化し、長い文章を分解し、難しい概念を平易な言葉で説明し、情報を明確で魅力的な方法で提示します。短く書き直されたテキストは、元のテキストの核となるアイデアを年齢に適した方法で伝える必要があります。
Userミトコンドリアは、しばしば細胞の発電所と呼ばれ、細胞呼吸のプロセスを通じてアデノシン三リン酸(ATP)の生産において重要な役割を果たす必須のオルガネラです。ATPは細胞の主要なエネルギー通貨であり、様々な細胞機能や生化学反応が起こることを可能にします。

出力例

ミトコンドリアは細胞の中にある小さな部品で、小さな発電所のように働いています。ミトコンドリアはATPという特別な分子を作ります。これは細胞のエネルギーのお金のようなものです。ATPは細胞が重要な仕事をするのを助け、スムーズに動かし続けます。ちょうどお金が人々に必要なものを買うのを助けるのと同じです。ミトコンドリアはとても重要です。なぜなら、ミトコンドリアがなければ、細胞は正しく機能するためのエネルギーを持つことができないからです。


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=0,
  system="Your task is to take the text provided and rewrite it in a way that is easy for young learners in grades 3-5 to read and understand. Simplify advanced vocabulary, break down long sentences, explain difficult concepts in plain language, and present the information in a clear, engaging way. The short rewritten text should convey the core ideas of the original text in an age-appropriate manner.",
  messages=[
    {
      "role": "user",
      "content": [
        {
          "type": "text",
          "text": "The mitochondria, often referred to as the powerhouses of the cell, are essential organelles that play a crucial role in the production of adenosine triphosphate (ATP) through the process of cellular respiration. ATP is the primary energy currency of the cell, enabling various cellular functions and biochemical reactions to occur."
        }
      ]
    }
  ]
)
print(message.content)