Loading...
    • 开发者指南
    • API 参考
    • MCP
    • 资源
    • 发布说明
    Search...
    ⌘K

    资源

    overview术语表系统提示词

    用例

    概述工单路由客户支持代理内容审核法律文件摘要

    提示库

    提示词库宇宙按键企业透视师网站向导Excel公式专家Google apps 脚本编写器Python 错误修复器时间旅行顾问故事创作伙伴引用你的来源SQL 魔法师梦境解释师双关语专家烹饪创作者混成词诗人Hal 幽默助手LaTeX 传奇情绪着色器Git 高手比喻专家道德困境导航器会议记录员习语阐释器代码顾问函数制造器新词创造者CSV 转换器表情符号编码器散文润色器观点思考者问答题生成器正念导师二年级简化器VR健身创新者PII 净化器备忘录大师职业教练评分大师绕口令面试问题制作器语法精灵猜猜这个谜语代码解释器外星人类学家数据整理器品牌建设者效率估算器评论分类器方向解码器励志缪斯邮箱地址提取器主审核员课程规划师苏格拉底智者头韵炼金术师未来主义时尚顾问多语言超能力产品命名专家哲学思辨电子表格魔法师科幻场景模拟器自适应编辑器Babel的广播推文语调检测器机场代码分析器
    Console
    提示库

    头韵炼金术师

    为任何给定主题生成头韵短语和句子。

    将此提示复制到我们的开发者控制台中亲自试用!

    内容
    System你的任务是为给定主题创建头韵短语和句子。确保头韵不仅听起来悦耳,还能传达相关信息或唤起与主题相关的适当情感。
    User海洋

    示例输出

    1. 轻柔的波浪冲刷着海岸。
    2. 咸咸的海浪飞溅在沙滩上。
    3. 汹涌的洋流雕刻着海岸悬崖。
    4. 深邃、黑暗的深处隐藏着危险。
    5. 潺潺的小溪为海滩带来生机。
    6. 强大、雄伟的哺乳动物在水中迁徙。
    7. 雷鸣般的潮汐将船只抛来抛去。
    8. 闪闪发光的浅滩庇护着神秘的海洋生物。
    9. 波光粼粼的倒影揭示了水面下的世界。
    10. 旋转、汹涌的海洋塑造着海岸线。
    11. 泡沫翻滚的浮冰自由流动。
    12. 优雅的海鸥在闪闪发光的海洋上空滑翔。
    13. 顽皮的海豚在纯净的水中跳跃。
    14. 咸咸的微风吹过无边的蓝色。
    15. 有节奏的波纹向岩石海岸滚动。
    16. 珊瑚洞穴隐藏着多彩的水生群落。
    17. 暴风雨的天空和汹涌的海洋显示着自然的力量。
    18. 翻滚的潮汐改变着宁静的海湾。
    19. 旋转、呼啸的风掀起波浪。
    20. 宁静、蓝宝石般的海水延伸到地平线。

    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=1,
        system="你的任务是为给定主题创建头韵短语和句子。确保头韵不仅听起来悦耳,还能传达相关信息或唤起与主题相关的适当情感。",
        messages=[
            {
                "role": "user",
                "content": [
                    {
                        "type": "text",
                        "text": "海洋"
                    }
                ]
            }
        ]
    )
    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: 1,
      system: "你的任务是为给定主题创建头韵短语和句子。确保头韵不仅听起来悦耳,还能传达相关信息或唤起与主题相关的适当情感。",
      messages: [
        {
          "role": "user",
          "content": [
            {
              "type": "text",
              "text": "海洋"
            }
          ]
        }
      ]
    });
    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=1,
        system="你的任务是为给定主题创建头韵短语和句子。确保头韵不仅听起来悦耳,还能传达相关信息或唤起与主题相关的适当情感。",
        messages=[
            {
                "role": "user",
                "content": [
                    {
                        "type": "text",
                        "text": "海洋"
                    }
                ]
            }
        ]
    )
    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: 1,
      system: "你的任务是为给定主题创建头韵短语和句子。确保头韵不仅听起来悦耳,还能传达相关信息或唤起与主题相关的适当情感。",
      messages: [
        {
          "role": "user",
          "content": [
            {
              "type": "text",
              "text": "海洋"
            }
          ]
        }
      ]
    });
    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=1,
        system="你的任务是为给定主题创建头韵短语和句子。确保头韵不仅听起来悦耳,还能传达相关信息或唤起与主题相关的适当情感。",
        messages=[
            {
                "role": "user",
                "content": [
                    {
                        "type": "text",
                        "text": "海洋"
                    }
                ]
            }
        ]
    )
    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: 1,
      system: "你的任务是为给定主题创建头韵短语和句子。确保头韵不仅听起来悦耳,还能传达相关信息或唤起与主题相关的适当情感。",
      messages: [
        {
          "role": "user",
          "content": [
            {
              "type": "text",
              "text": "海洋"
            }
          ]
        }
      ]
    });
    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