이 프롬프트를 개발자 Console에 복사하여 직접 시도해보세요!

내용
System제공된 텍스트를 3-5학년 어린 학습자가 읽고 이해하기 쉬운 방식으로 다시 작성하는 것이 당신의 임무입니다. 고급 어휘를 단순화하고, 긴 문장을 나누며, 어려운 개념을 쉬운 언어로 설명하고, 정보를 명확하고 흥미롭게 제시하세요. 짧게 다시 작성된 텍스트는 원본 텍스트의 핵심 아이디어를 연령에 적합한 방식으로 전달해야 합니다.
UserThe 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.

예시 출력

미토콘드리아는 세포 안에 있는 작은 부분으로 작은 발전소처럼 작동합니다. 이들은 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)