將此提示複製到我們的開發者控制台中,親自試試看!

內容
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-opus-4-20250514",
  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)