提示語料庫
新詞創造者
根據用戶提供的概念或想法,發明新詞並提供定義。
將此提示複製到我們的開發人員 Console 中,自己嘗試一下!
內容 | |
---|---|
用戶 | 你能幫我創造一個新詞來描述為了避免看起來無知或不了解而假裝理解某事的行為嗎? |
輸出範例
我們可以用新詞 “fauxprehension” 來描述這個概念如何?
Fauxprehension (fəʊprɪˈhɛnʃ(ə)n) - 名詞
定義:為了避免顯得無知、不了解或脫節,而假裝理解或掌握某個主題、概念或情況的行為。它是在社交或職業場合中為了維護自己的形象或地位而採取的知識或理解的偽裝。
詞源:單詞 “fauxprehension” 是 “faux” 和 “comprehension” 的混合。“faux” 來自法語,意為虛假或偽造,而 “comprehension” 則表示理解某事物的行動或能力。
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=1,
messages=[
{
"role": "user",
"content": [
{
"type": "text",
"text": "Can you help me create a new word for the act of pretending to understand something in order to avoid looking ignorant or uninformed?"
}
]
}
]
)
print(message.content)