将此提示复制到我们的开发者控制台中亲自试用!
| 内容 | |
|---|---|
| 用户 | 你能帮我为”为了避免看起来无知或不了解情况而假装理解某事的行为”创造一个新词吗? |
示例输出
用新词”fauxprehension”来描述这个概念怎么样? Fauxprehension (fəʊprɪˈhɛnʃ(ə)n) - 名词定义:为了避免显得无知、不了解情况或脱节而假装理解或领会某个话题、概念或情况的行为。这是对知识或对某个主题掌握程度的伪装,通常在社交或职业场合中使用,以维护个人形象或地位。 词源:单词”fauxprehension”是”faux”和”comprehension”的混合词,其中”faux”来自法语,意思是虚假或假的,而”comprehension”意思是理解某事的行为或能力。
API 请求
- Python
- TypeScript
- AWS Bedrock Python
- AWS Bedrock TypeScript
- Vertex AI Python
- Vertex AI TypeScript
import anthropic
client = anthropic.Anthropic(
# defaults to os.environ.get("ANTHROPIC_API_KEY")
api_key="my_api_key",
)
message = client.messages.create(
model="claude-sonnet-4-5",
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)
import Anthropic from "@anthropic-ai/sdk";
const anthropic = new Anthropic({
apiKey: "my_api_key", // defaults to process.env["ANTHROPIC_API_KEY"]
});
const msg = await anthropic.messages.create({
model: "claude-sonnet-4-5",
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?"
}
]
}
]
});
console.log(msg);
from anthropic import AnthropicBedrock
# See https://docs.claude.com/claude/reference/claude-on-amazon-bedrock
# for authentication options
client = AnthropicBedrock()
message = client.messages.create(
model="anthropic.claude-sonnet-4-5-20250929-v1:0",
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)
import AnthropicBedrock from "@anthropic-ai/bedrock-sdk";
// See https://docs.claude.com/claude/reference/claude-on-amazon-bedrock
// for authentication options
const client = new AnthropicBedrock();
const msg = await client.messages.create({
model: "anthropic.claude-sonnet-4-5-20250929-v1:0",
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?"
}
]
}
]
});
console.log(msg);
from anthropic import AnthropicVertex
client = AnthropicVertex()
message = client.messages.create(
model="claude-sonnet-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)
import { AnthropicVertex } from '@anthropic-ai/vertex-sdk';
// Reads from the `CLOUD_ML_REGION` & `ANTHROPIC_VERTEX_PROJECT_ID` environment variables.
// Additionally goes through the standard `google-auth-library` flow.
const client = new AnthropicVertex();
const msg = await client.messages.create({
model: "claude-sonnet-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?"
}
]
}
]
});
console.log(msg);