Loading...
    • 開發者指南
    • API 參考
    • MCP
    • 資源
    • 發行說明
    Search...
    ⌘K

    資源

    overview詞彙表系統提示

    使用案例

    概述工單路由客戶支援代理內容審核法律文件摘要

    提示詞庫

    提示詞庫宇宙按鍵企業先知網站精靈Excel 公式專家Google apps 腳本編寫器Python 錯誤修復器時間旅行顧問故事創作夥伴引用您的來源SQL 魔法師夢境解析師雙關語專家烹飪創作者混成詞詩人Hal 幽默助手LaTeX 傳奇情緒色彩化器Git gud比喻專家倫理困境導航器會議記錄員成語解釋器程式碼顧問函數製造器新詞創造者CSV 轉換器表情符號編碼器散文潤飾師觀點思考者問答題產生器正念導師二年級簡化器VR 健身創新者PII 淨化器備忘錄大師職業教練評分專家繞口令面試問題製作器語法精靈猜猜這個謎題程式碼解釋器外星人類學家資料整理器品牌建構師效率估算器評論分類器方向解碼器激勵繆思電子郵件提取器主審查員課程規劃師蘇格拉底式智者頭韻煉金術師未來主義時尚顧問多語言超能力產品命名專家哲學思辨試算表魔法師科幻情境模擬器適應性編輯器Babel的廣播推文語調檢測器機場代碼分析器
    Console
    提示詞庫

    試算表魔法師

    生成包含各種類型資料的 CSV 試算表。

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

    內容
    System您的任務是生成包含指定類型資料的 CSV 試算表。試算表應該組織良好,具有清晰的欄位標題和每個欄位適當的資料類型。確保資料真實、多樣化且格式一致。包含至少 10 行資料,不計算標題行。
    User建立一個包含圖書館書籍資訊的試算表。包含以下欄位:書籍 ID、標題、作者、類型、出版年份和可用副本數。確保資料涵蓋各種類型和出版年份,且可用副本數在書籍之間有所不同。

    範例輸出

    以下是根據您的要求包含圖書館書籍資訊的 CSV 試算表:

    Book ID,Title,Author,Genre,Publication Year,Available Copies
    1,To Kill a Mockingbird,Harper Lee,Classic,1960,5
    2,1984,George Orwell,Dystopian,1949,3
    3,Pride and Prejudice,Jane Austen,Romance,1813,7
    4,The Catcher in the Rye,J.D. Salinger,Coming-of-age,1951,2
    5,The Hitchhiker's Guide to the Galaxy,Douglas Adams,Science Fiction,1979,4
    6,The Da Vinci Code,Dan Brown,Mystery,2003,6
    7,The Kite Runner,Khaled Hosseini,Historical Fiction,2003,3
    8,The Alchemist,Paulo Coelho,Philosophical Fiction,1988,5
    9,The Hunger Games,Suzanne Collins,Young Adult,2008,8
    10,The Girl with the Dragon Tattoo,Stieg Larsson,Crime,2005,4
    11,The Hobbit,J.R.R. Tolkien,Fantasy,1937,6
    12,The Diary of a Young Girl,Anne Frank,Autobiography,1947,2
    13,The Fault in Our Stars,John Green,Young Adult,2012,5
    14,The Catcher in the Rye,J.D. Salinger,Coming-of-age,1951,3
    15,The Curious Incident of the Dog in the Night-Time,Mark Haddon,Mystery,2003,4


    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=1000,
        temperature=0,
        system="您的任務是生成包含指定類型資料的 CSV 試算表。試算表應該組織良好,具有清晰的欄位標題和每個欄位適當的資料類型。確保資料真實、多樣化且格式一致。包含至少 10 行資料,不計算標題行。",
        messages=[
            {
                "role": "user",
                "content": [
                    {
                        "type": "text",
                        "text": "建立一個包含圖書館書籍資訊的試算表。包含以下欄位:書籍 ID、標題、作者、類型、出版年份和可用副本數。確保資料涵蓋各種類型和出版年份,且可用副本數在書籍之間有所不同。"
                    }
                ]
            }
        ]
    )
    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: 1000,
      temperature: 0,
      system: "您的任務是生成包含指定類型資料的 CSV 試算表。試算表應該組織良好,具有清晰的欄位標題和每個欄位適當的資料類型。確保資料真實、多樣化且格式一致。包含至少 10 行資料,不計算標題行。",
      messages: [
        {
          "role": "user",
          "content": [
            {
              "type": "text",
              "text": "建立一個包含圖書館書籍資訊的試算表。包含以下欄位:書籍 ID、標題、作者、類型、出版年份和可用副本數。確保資料涵蓋各種類型和出版年份,且可用副本數在書籍之間有所不同。"
            }
          ]
        }
      ]
    });
    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=1000,
        temperature=0,
        system="您的任務是生成包含指定類型資料的 CSV 試算表。試算表應該組織良好,具有清晰的欄位標題和每個欄位適當的資料類型。確保資料真實、多樣化且格式一致。包含至少 10 行資料,不計算標題行。",
        messages=[
            {
                "role": "user",
                "content": [
                    {
                        "type": "text",
                        "text": "建立一個包含圖書館書籍資訊的試算表。包含以下欄位:書籍 ID、標題、作者、類型、出版年份和可用副本數。確保資料涵蓋各種類型和出版年份,且可用副本數在書籍之間有所不同。"
                    }
                ]
            }
        ]
    )
    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: 1000,
      temperature: 0,
      system: "您的任務是生成包含指定類型資料的 CSV 試算表。試算表應該組織良好,具有清晰的欄位標題和每個欄位適當的資料類型。確保資料真實、多樣化且格式一致。包含至少 10 行資料,不計算標題行。",
      messages: [
        {
          "role": "user",
          "content": [
            {
              "type": "text",
              "text": "建立一個包含圖書館書籍資訊的試算表。包含以下欄位:書籍 ID、標題、作者、類型、出版年份和可用副本數。確保資料涵蓋各種類型和出版年份,且可用副本數在書籍之間有所不同。"
            }
          ]
        }
      ]
    });
    console.log(msg);
    
    Vertex AI Python
    from anthropic import AnthropicVertex
    
    client = AnthropicVertex()
    
    message = client.messages.create(
        model="claude-sonnet-4@20250514",
        max_tokens=1000,
        temperature=0,
        system="您的任務是生成包含指定類型資料的 CSV 試算表。試算表應該組織良好,具有清晰的欄位標題和每個欄位適當的資料類型。確保資料真實、多樣化且格式一致。包含至少 10 行資料,不計算標題行。",
        messages=[
            {
                "role": "user",
                "content": [
                    {
                        "type": "text",
                        "text": "建立一個包含圖書館書籍資訊的試算表。包含以下欄位:書籍 ID、標題、作者、類型、出版年份和可用副本數。確保資料涵蓋各種類型和出版年份,且可用副本數在書籍之間有所不同。"
                    }
                ]
            }
        ]
    )
    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: 1000,
      temperature: 0,
      system: "您的任務是生成包含指定類型資料的 CSV 試算表。試算表應該組織良好,具有清晰的欄位標題和每個欄位適當的資料類型。確保資料真實、多樣化且格式一致。包含至少 10 行資料,不計算標題行。",
      messages: [
        {
          "role": "user",
          "content": [
            {
              "type": "text",
              "text": "建立一個包含圖書館書籍資訊的試算表。包含以下欄位:書籍 ID、標題、作者、類型、出版年份和可用副本數。確保資料涵蓋各種類型和出版年份,且可用副本數在書籍之間有所不同。"
            }
          ]
        }
      ]
    });
    console.log(msg);
    
    • API 請求
    © 2025 ANTHROPIC PBC

    Products

    • Claude
    • Claude Code
    • Max plan
    • Team plan
    • Enterprise plan
    • Download app
    • Pricing
    • Log in

    Features

    • Claude and Slack
    • Claude in Excel

    Models

    • Opus
    • Sonnet
    • Haiku

    Solutions

    • AI agents
    • Code modernization
    • Coding
    • Customer support
    • Education
    • Financial services
    • Government
    • Life sciences

    Claude Developer Platform

    • Overview
    • Developer docs
    • Pricing
    • Amazon Bedrock
    • Google Cloud’s Vertex AI
    • Console login

    Learn

    • Blog
    • Catalog
    • Courses
    • Use cases
    • Connectors
    • Customer stories
    • Engineering at Anthropic
    • Events
    • Powered by Claude
    • Service partners
    • Startups program

    Company

    • Anthropic
    • Careers
    • Economic Futures
    • Research
    • News
    • Responsible Scaling Policy
    • Security and compliance
    • Transparency

    Help and security

    • Availability
    • Status
    • Support center

    Terms and policies

    • Privacy policy
    • Responsible disclosure policy
    • Terms of service: Commercial
    • Terms of service: Consumer
    • Usage policy

    Products

    • Claude
    • Claude Code
    • Max plan
    • Team plan
    • Enterprise plan
    • Download app
    • Pricing
    • Log in

    Features

    • Claude and Slack
    • Claude in Excel

    Models

    • Opus
    • Sonnet
    • Haiku

    Solutions

    • AI agents
    • Code modernization
    • Coding
    • Customer support
    • Education
    • Financial services
    • Government
    • Life sciences

    Claude Developer Platform

    • Overview
    • Developer docs
    • Pricing
    • Amazon Bedrock
    • Google Cloud’s Vertex AI
    • Console login

    Learn

    • Blog
    • Catalog
    • Courses
    • Use cases
    • Connectors
    • Customer stories
    • Engineering at Anthropic
    • Events
    • Powered by Claude
    • Service partners
    • Startups program

    Company

    • Anthropic
    • Careers
    • Economic Futures
    • Research
    • News
    • Responsible Scaling Policy
    • Security and compliance
    • Transparency

    Help and security

    • Availability
    • Status
    • Support center

    Terms and policies

    • Privacy policy
    • Responsible disclosure policy
    • Terms of service: Commercial
    • Terms of service: Consumer
    • Usage policy
    © 2025 ANTHROPIC PBC