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

內容
User按照以下指示重寫下面的段落:用海盜風格。段落:1758年,瑞典植物學家和動物學家卡爾·林奈在其《自然系統》中發表了物種的雙詞命名法(二名法)。Canis是拉丁文中表示「狗」的詞,在這個屬下,他列出了家犬、狼和金豺。

範例輸出

啊哈,夥計們!回到1758年,那個壞血病纏身的植物學家和動物愛好者卡爾·林奈發表了他的書《自然系統》,裡面給各種生物都起了兩個詞的名字(他稱之為二名法)。Canis是海盜語言中「狗」的意思,在那個標題下他列出了普通狗、狼,還有金豺。啊嘎!對老船長林奈來說,所有的狗都一樣。他寫那本書時可能還有一條木腿和肩上的鸚鵡呢!哈哈!現在擦甲板吧,你們這些無賴,否則我就讓你們走木板了!


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=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)