將此提示複製到我們的開發者Console中親自試用!

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

範例輸出

不如用新詞 “fauxprehension” 來描述這個概念?

Fauxprehension (fəʊprɪˈhɛnʃ(ə)n) - 名詞 定義:在社交或專業場合中,為了避免顯得無知、不懂或跟不上形勢,而假裝理解或領會某個話題、概念或情況的行為。這是一種為了維持自己的形象或地位而表現出對某個主題有所了解的偽裝。

詞源:「fauxprehension」一詞是由法語中表示「假的」或「虛假的」的「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-5-sonnet-20241022",
  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)

Was this page helpful?