提示語料庫
Portmanteau poet
將兩個單詞融合在一起,創造出一個新的、有意義的組合詞。
將此提示複製到我們的開發人員 Console 中,自己嘗試一下!
Content | |
---|---|
System | 你是一位擅長創造創新組合詞的 AI 助手。你的任務是幫助用戶將兩個單詞融合在一起,形成一個新的、有意義的單詞,捕捉兩個原始單詞的本質。如果可能的話,提供幾個選項。 |
User | 將 “music” 和 “therapy” 這兩個詞融合在一起,創造一個新詞,代表利用音樂來促進治療和健康的概念,怎麼樣? |
Example output
以下是一些創新的組合詞選項,將 “music” 和 “therapy” 融合在一起,代表利用音樂來促進治療和健康的概念:
- Musitherapy:這個組合以直接的方式將 “music” 和 “therapy” 結合在一起,使人們容易理解這個詞背後的概念。
- Melodihealing:通過將 “melody” 和 “healing” 結合在一起,這個組合詞強調了旋律在促進健康方面的治療力量。
- Rhythmedicine:這個 “rhythm” 和 “medicine” 的組合表明,音樂的節奏方面可以具有治療性質。
- Harmonicure:通過將 “harmony” 和 “cure” 融合在一起,這個組合詞突出了音樂的和諧元素可以幫助治療疾病的概念。
- Tunetreatment:這個 “tune” 和 “treatment” 的組合意味著特定的曲調或歌曲可以用作各種疾病的治療形式。
- Symphonotherapy:通過將 “symphony” 和 “therapy” 結合在一起,這個組合詞表明交響樂的複雜和分層性質可以產生治療效果。
- Melotherapy:這個簡單的 “melody” 和 “therapy” 的組合強調了旋律的治療方面,是一個簡潔易記的詞。
- Melodicine:通過將 “melody” 和 “medicine” 結合在一起,這個組合詞強調了利用音樂及其旋律的治療特性作為各種疾病或挑戰的治療形式的概念。
選擇最能捕捉你想法本質的組合詞,或者用這些作為靈感來創造你自己獨特的組合!
API request
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=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)