혀 꼬부리기 1:
영리한 땃쥐가 반짝이는 신발을 갉아먹었다.혀 꼬부리기 2:
상쾌한 바람이 푸른 피를 가진, 지껄이는, 중얼거리는 개코원숭이 옆으로 불었다.혀 꼬부리기 3:
당황한 피리 부는 사람이 피리 연습을 하면서 절인 고추 한 꾸러미를 골랐다.혀 꼬부리기 4:
여섯 개의 매끄럽고, 반들반들하며, 가느다란 썰매가 가파르고 눈 덮인 경사면을 빠르게 미끄러졌다.
import anthropicclient = 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)