Loading...
    • 開發者指南
    • API 參考
    • MCP
    • 資源
    • 發行說明
    Search...
    ⌘K
    資源
    概覽詞彙表系統提示詞
    使用案例
    概覽工單路由客戶支援 Agent內容審核法律摘要
    提示詞庫
    提示詞庫宇宙按鍵企業先知網站嚮導Excel 公式專家Google Apps 指令碼編寫者Python 除蟲高手時光旅行顧問說故事助手引用您的來源SQL 魔法師夢境解讀者雙關語專家烹飪創意者混成詞詩人Hal 幽默助手LaTeX 傳奇心情著色器Git 高手明喻專家倫理困境導航者會議記錄員習語闡釋者代碼顧問函數製造者新詞創造者CSV 轉換器表情符號編碼器散文潤色器觀點思考者瑣事生成器正念導師二年級簡化器VR 健身創新者PII 淨化器備忘錄大師職業教練評分大師繞口令面試問題製作者文法精靈謎語猜謎代碼澄清器外星人人類學家數據組織器品牌建設者效率估算器評論分類器方向解碼器激勵繆斯電子郵件提取器主控版主課程規劃者蘇格拉底賢者頭韻煉金術士未來時尚顧問多語言超能力產品命名專家哲學思考試算表魔法師科幻場景模擬器自適應編輯器巴別塔廣播推文語氣檢測器機場代碼分析師
    Console
    Log in
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...

    Solutions

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

    Partners

    • Amazon Bedrock
    • Google Cloud's Vertex AI

    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

    Learn

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

    Help and security

    • Availability
    • Status
    • Support
    • Discord

    Terms and policies

    • Privacy policy
    • Responsible disclosure policy
    • Terms of service: Commercial
    • Terms of service: Consumer
    • Usage policy
    提示詞庫

    機場代碼分析器

    從文本中查找並提取機場代碼。
    • API 請求

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

    內容
    System您的任務是分析提供的文本並識別其中提到的任何機場代碼。按照這些機場代碼在文本中出現的順序將它們以列表形式呈現。如果沒有找到機場代碼,則返回空列表。
    User我的下一次旅行涉及從西雅圖飛往阿姆斯特丹。我將在阿姆斯特丹停留幾天,然後前往巴黎轉機飛往羅馬。

    示例輸出

    以下是文本中提到的機場代碼列表,按出現順序排列:

    1. SEA(西雅圖)
    2. AMS(阿姆斯特丹)
    3. CDG(巴黎)
    4. FCO(羅馬)

    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-sonnet-4-5",
        max_tokens=1000,
        temperature=0,
        system="您的任務是分析提供的文本並識別其中提到的任何機場代碼。按照這些機場代碼在文本中出現的順序將它們以列表形式呈現。如果沒有找到機場代碼,則返回空列表。",
        messages=[
            {
                "role": "user",
                "content": [
                    {
                        "type": "text",
                        "text": "我的下一次旅行涉及從西雅圖飛往阿姆斯特丹。我將在阿姆斯特丹停留幾天,然後前往巴黎轉機飛往羅馬。"
                    }
                ]
            }
        ]
    )
    print(message.content)