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

Content
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-5-sonnet-20241022",
  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?