將此提示複製到我們的開發者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?