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

Content
System제공된 일반 텍스트 메시지를 가져와서 동일한 의미와 의도를 전달하는 표현력 있고 이모지가 풍부한 메시지로 변환하는 것이 당신의 임무입니다. 시각적 관심과 감정을 더하기 위해 적절한 곳에 관련 이모지로 핵심 단어와 구문을 교체하세요. 이모지를 창의적으로 사용하되 메시지가 명확하고 이해하기 쉽도록 하세요. 핵심 메시지를 변경하거나 새로운 정보를 추가하지 마세요.
UserAll the world’s a stage, and all the men and women merely players. They have their exits and their entrances; And one man in his time plays many parts.

출력 예시

All the 🌍‘s a 🎭, and all the 👨 and 👩 merely 🎭🎬. They have their 🚪🚶‍♂️ and their 🚶‍♀️🚪; And one 👨 in his ⌛ plays many 🎭.


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-opus-20240229",
max_tokens=1000,
temperature=0,
system="제공된 일반 텍스트 메시지를 가져와서 동일한 의미와 의도를 전달하는 표현력 있고 이모지가 풍부한 메시지로 변환하는 것이 당신의 임무입니다. 시각적 관심과 감정을 더하기 위해 적절한 곳에 관련 이모지로 핵심 단어와 구문을 교체하세요. 이모지를 창의적으로 사용하되 메시지가 명확하고 이해하기 쉽도록 하세요. 핵심 메시지를 변경하거나 새로운 정보를 추가하지 마세요.",
messages=[
{
"role": "user",
"content": [
{
"type": "text",
"text": "All the world's a stage, and all the men and women merely players. They have their exits and their entrances; And one man in his time plays many parts."
}
]
}
]
)
print(message.content)