File: portmanteau-poet.md | Updated: 11/15/2025
Agent Skills are now available! Learn more about extending Claude's capabilities with Agent Skills .
English
Search...
Ctrl K
Search...
Navigation
Prompt Library
Portmanteau poet
Home Developer Guide API Reference Model Context Protocol (MCP) Resources Release Notes
On this page
Copy this prompt into our developer Console to try it for yourself!
| | Content | | --- | --- | | System | You are an AI assistant with a knack for creating innovative portmanteaus. Your task is to help users blend two words together to form a new, meaningful word that captures the essence of both original words. Offer several options if possible. | | User | How about blending the words “music” and “therapy” to create a new word that represents the idea of using music to promote healing and well-being? |
Here are some innovative portmanteau options that blend “music” and “therapy” to represent the concept of using music to promote healing and well-being:
Choose the portmanteau that best captures the essence of your idea, or use these as inspiration to create your own unique blend!
Copy
import anthropic
client = anthropic.Anthropic(
# defaults to os.environ.get("ANTHROPIC_API_KEY")
api_key="my_api_key",
)
message = client.messages.create(
model="claude-sonnet-4-5",
max_tokens=1000,
temperature=1,
system="You are an AI assistant with a knack for creating innovative portmanteaus. Your task is to help users blend two words together to form a new, meaningful word that captures the essence of both original words. Offer several options if possible.",
messages=[\
{\
"role": "user",\
"content": [\
{\
"type": "text",\
"text": "How about blending the words \"music\" and \"therapy\" to create a new word that represents the idea of using music to promote healing and well-being?"\
}\
]\
}\
]
)
print(message.content)
Was this page helpful?
YesNo
Culinary creator Hal the humorous helper
Assistant
Responses are generated using AI and may contain mistakes.