提示詞庫
適應性編輯器
根據使用者給定的指示重寫文本,例如使用不同的語調、受眾或風格。
將此提示複製到我們的開發者 Console 中親自試試看!
| 內容 | |
|---|---|
| User | 使用以下指示重寫以下段落:以海盜的風格。段落:1758年,瑞典植物學家和動物學家卡爾·林奈在他的《自然系統》中發表了物種的雙詞命名法(二名法)。Canis是拉丁語中意為「狗」的詞,在這個屬下,他列出了家犬、狼和金豺。 |
範例輸出
範例輸出
嘿,夥伴們!早在1758年,那個壞血病植物學家和動物愛好者卡爾·林奈發表了他的《自然系統》一書,裡面有那些花哨的雙詞名稱來命名各種生物(他稱之為二名法)。Canis是海盜語中「狗」的意思,在那個標題下他列出了普通狗、狼,還有金豺。啊!對老船長林奈來說,所有這些狗都是一樣的。他寫那本書的時候可能有一條木腿和肩膀上有隻鸚鵡!哈哈!現在你們這些無賴快去擦甲板,不然我就讓你們走跳板!
API 請求
API 請求
Python
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=2000,
temperature=1,
messages=[
{
"role": "user",
"content": [
{
"type": "text",
"text": "Rewrite the following paragraph using the following instructions: in the style of a pirate. \n \nParagraph: \nIn 1758, the Swedish botanist and zoologist Carl Linnaeus published in his Systema Naturae, the two-word naming of species (binomial nomenclature). Canis is the Latin word meaning \"dog\", and under this genus, he listed the domestic dog, the wolf, and the golden jackal."
}
]
}
]
)
print(message.content)
TypeScript
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: 2000,
temperature: 1,
messages: [
{
"role": "user",
"content": [
{
"type": "text",
"text": "Rewrite the following paragraph using the following instructions: in the style of a pirate. \n \nParagraph: \nIn 1758, the Swedish botanist and zoologist Carl Linnaeus published in his Systema Naturae, the two-word naming of species (binomial nomenclature). Canis is the Latin word meaning \"dog\", and under this genus, he listed the domestic dog, the wolf, and the golden jackal."
}
]
}
]
});
console.log(msg);
AWS Bedrock Python
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=2000,
temperature=1,
messages=[
{
"role": "user",
"content": [
{
"type": "text",
"text": "Rewrite the following paragraph using the following instructions: in the style of a pirate. \n \nParagraph: \nIn 1758, the Swedish botanist and zoologist Carl Linnaeus published in his Systema Naturae, the two-word naming of species (binomial nomenclature). Canis is the Latin word meaning \"dog\", and under this genus, he listed the domestic dog, the wolf, and the golden jackal."
}
]
}
]
)
print(message.content)
AWS Bedrock TypeScript
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: 2000,
temperature: 1,
messages: [
{
"role": "user",
"content": [
{
"type": "text",
"text": "Rewrite the following paragraph using the following instructions: in the style of a pirate. \n \nParagraph: \nIn 1758, the Swedish botanist and zoologist Carl Linnaeus published in his Systema Naturae, the two-word naming of species (binomial nomenclature). Canis is the Latin word meaning \"dog\", and under this genus, he listed the domestic dog, the wolf, and the golden jackal."
}
]
}
]
});
console.log(msg);
Vertex AI Python
from anthropic import AnthropicVertex
client = AnthropicVertex()
message = client.messages.create(
model="claude-sonnet-4@20250514",
max_tokens=2000,
temperature=1,
messages=[
{
"role": "user",
"content": [
{
"type": "text",
"text": "Rewrite the following paragraph using the following instructions: in the style of a pirate. \n \nParagraph: \nIn 1758, the Swedish botanist and zoologist Carl Linnaeus published in his Systema Naturae, the two-word naming of species (binomial nomenclature). Canis is the Latin word meaning \"dog\", and under this genus, he listed the domestic dog, the wolf, and the golden jackal."
}
]
}
]
)
print(message.content)
Vertex AI TypeScript
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: 2000,
temperature: 1,
messages: [
{
"role": "user",
"content": [
{
"type": "text",
"text": "Rewrite the following paragraph using the following instructions: in the style of a pirate. \n \nParagraph: \nIn 1758, the Swedish botanist and zoologist Carl Linnaeus published in his Systema Naturae, the two-word naming of species (binomial nomenclature). Canis is the Latin word meaning \"dog\", and under this genus, he listed the domestic dog, the wolf, and the golden jackal."
}
]
}
]
});
console.log(msg);