직접 시도해보려면 이 프롬프트를 개발자 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-3-7-sonnet-20250219",
  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)