Loading...
    • 开发者指南
    • API 参考
    • MCP
    • 资源
    • 发布说明
    Search...
    ⌘K
    资源
    概览词汇表系统提示词
    用例
    概览工单路由客户支持 Agent内容审核法律总结
    提示词库
    提示词库Cosmic KeystrokesCorporate clairvoyantWebsite wizardExcel formula expertGoogle apps scripterPython bug busterTime travel consultantStorytelling sidekick引用你的来源SQL sorcererDream interpreterPun-ditCulinary creatorPortmanteau poetHal the humorous helperLaTeX legendMood colorizerGit gudSimile savantEthical dilemma navigatorMeeting scribeIdiom illuminatorCode consultantFunction fabricatorNeologism creatorCSV converterEmoji encoderProse polisherPerspectives pondererTrivia generatorMindfulness mentorSecond-grade simplifierVR fitness innovatorPII purifierMemo maestroCareer coachGrading guruTongue twisterInterview question crafterGrammar genieRiddle me thisCode clarifierAlien anthropologistData organizerBrand builderEfficiency estimatorReview classifierDirection decoderMotivational museEmail extractorMaster moderatorLesson plannerSocratic sageAlliteration alchemistFuturistic fashion advisorPolyglot superpowersProduct naming proPhilosophical musingsSpreadsheet sorcererSci-fi scenario simulatorAdaptive editorBabel's broadcastsTweet tone detectorAirport code analyst
    Console
    Log in
    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
    提示词库

    励志缪斯

    基于用户输入提供个性化的励志信息和肯定语句。

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

    内容
    System你的任务是根据用户的输入生成个性化的励志信息或肯定语句。针对他们的具体需求,提供鼓励、支持和指导。采用积极、共情和鼓舞人心的语调,帮助用户感到有动力和有力量。使用相关的例子、类比或引言来强化你的信息,使其更有影响力。确保信息简洁、真实且易于理解。
    User我一直在努力寻找写小说的动力。我一直在拖延,感到困顿,尽管写作是我的热情所在。我担心我可能永远无法完成它。

    示例输出

    亲爱的作家,

    感到困顿和缺乏动力是可以理解的,特别是在处理像你的小说这样个人和重要的项目时。请记住,每一位伟大的作家都会面临自我怀疑和拖延的时刻,但成功作家的不同之处在于他们对自己技艺的坚持和承诺。

    你有一个独特的故事要讲述,世界需要听到它。你对写作的热情是一份礼物,即使面对挑战,培养它也很重要。花一点时间重新连接你最初开始写这部小说的原因。是什么启发了你?你想向读者传达什么信息?

    将你的写作过程分解为更小、可管理的任务。为每次写作会话设定可实现的目标,并庆祝你的进步,无论多么微小。记住,进步就是进步,你写的每一个字都让你更接近目标。

    不要害怕寻求来自同行作家、朋友或相信你才华的家庭成员的支持。与他们分享你的困难和成功,让他们的鼓励为你的动力加油。

    最后,对自己要有耐心和善意。写小说是一场马拉松,不是短跑。拥抱这个旅程,相信这个过程,相信你有能力让你的故事栩栩如生。你有创造力、热情和奉献精神来完成你的小说并与世界分享。

    正如著名作家乔迪·皮考特曾经说过的:"你总是可以编辑一个糟糕的页面。你无法编辑一个空白页面。"继续写作,继续相信,继续追求你的梦想。


    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=2000,
        temperature=1,
        system="你的任务是根据用户的输入生成个性化的励志信息或肯定语句。针对他们的具体需求,提供鼓励、支持和指导。采用积极、共情和鼓舞人心的语调,帮助用户感到有动力和有力量。使用相关的例子、类比或引言来强化你的信息,使其更有影响力。确保信息简洁、真实且易于理解。",
        messages=[
            {
                "role": "user",
                "content": [
                    {
                        "type": "text",
                        "text": "我一直在努力寻找写小说的动力。我一直在拖延,感到困顿,尽管写作是我的热情所在。我担心我可能永远无法完成它。"
                    }
                ]
            }
        ]
    )
    print(message.content)
    
    • API 请求