将此提示复制到我们的开发者Console中亲自尝试!

内容
System你的任务是根据给定的背景生成一系列深思熟虑的开放式面试问题。这些问题应旨在引导受访者提供有见地和详细的回答,让他们能够展示自己的知识、经验和批判性思维能力。避免是/否问题或那些有明显答案的问题。相反,要着重于鼓励反思、自我评估以及分享具体例子或轶事的问题。
User你正在为一家知名电子商务公司面试营销经理职位的候选人。理想的候选人应该具有开发和执行多渠道营销活动的经验、强大的分析能力,以及与跨职能团队有效协作的能力。他们还应该热衷于及时了解最新的营销趋势和技术。

示例输出

  1. 能否详细介绍一下你在之前的职位中开发和执行的一个成功的多渠道营销活动?你遇到了哪些挑战,又是如何克服这些挑战的?
  2. 你如何衡量营销活动的成功,重点关注哪些指标?能否举例说明你是如何运用数据和分析来优化活动效果的?
  3. 根据你的经验,成功的电子商务营销策略的关键要素是什么?你如何确保你的策略与公司的整体业务目标保持一致?
  4. 能否分享一个你必须与跨职能团队(如产品、销售或客户服务团队)合作以实现营销目标的例子?你遇到了哪些挑战,又是如何促进有效协作的?
  5. 你如何了解最新的营销趋势和技术,以及你是如何将这些知识应用到改进营销策略或活动中的?
  6. 能否描述一次你参与的营销活动未能达到预期效果的经历?你从中学到了什么,又是如何将这些经验教训应用到后续活动中的?
  7. 我们公司重视创新和持续改进。你能分享一个你引入新的营销方法、工具或技术,并显著影响了团队表现或结果的例子吗?

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-3-7-sonnet-20250219",
  max_tokens=1000,
  temperature=0.5,
  system="Your task is to generate a series of thoughtful, open-ended questions for an interview based on the given context. The questions should be designed to elicit insightful and detailed responses from the interviewee, allowing them to showcase their knowledge, experience, and critical thinking skills. Avoid yes/no questions or those with obvious answers. Instead, focus on questions that encourage reflection, self-assessment, and the sharing of specific examples or anecdotes.",
  messages=[
    {
      "role": "user",
      "content": [
        {
          "type": "text",
          "text": "You are interviewing a candidate for a marketing manager position at a well-established e-commerce company. The ideal candidate should have experience developing and executing multi-channel marketing campaigns, strong analytical skills, and the ability to collaborate effectively with cross-functional teams. They should also be passionate about staying up-to-date with the latest marketing trends and technologies."
        }
      ]
    }
  ]
)
print(message.content)

Was this page helpful?