직접 시도해보려면 이 프롬프트를 개발자 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-7-sonnet-20250219",
  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?