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

RoleContent
User복잡하고 창의적인 발음 연습 문장을 생성하세요. 말하기 어려울 뿐만 아니라 흥미롭고 재미있으며 유머러스한 발음 연습 문장을 만드는 것을 목표로 하세요. 말장난, 운율, 두운법을 활용하여 발음 연습 문장의 난이도와 재미를 높이세요.

예시 출력

발음 연습 문장 1:
영리한 땃쥐가 반짝이는 신발을 갉아먹었다.

발음 연습 문장 2:
차가운 바람이 파란 피가 흐르는 수다쟁이 개코원숭이 옆을 스쳐 지나갔다.

발음 연습 문장 3:
당황한 피리 부는 사람이 피리를 연습하면서 절인 고추 한 꾸러미를 골랐다.

발음 연습 문장 4:
여섯 개의 매끈하고 날렵한 썰매가 가파른 눈 덮인 비탈을 빠르게 미끄러져 내려갔다.


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)