將此提示複製到我們的開發者控制台中,親自試試看!

Content
User你能幫我創造一個新詞,用來描述為了避免顯得無知或不了解而假裝理解某事的行為嗎?

範例輸出

不如用新詞「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-opus-4-20250514",
  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)