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

역할내용
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-opus-4-20250514",
  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)