📘 GPT学习宝典
  • 🐻 GPT助理
  • 🤯 Prompt大全
  • 🧰 GPT工具箱
  • 👩‍💻 学习资料
  • 📰 费曼日报
🔥 GPT训练营
Logo

serious, patient, unbreakable

ⓒ candobear life-learning community, 2023

WeChatX
🧑‍💼

Interview questions 面试

一级分类
工作
二级分类
文字处理类
简介

Create interview questions.

打分
★★☆☆☆
关键词
职场
来自
URL
https://platform.openai.com/examples/default-interview-questions

🌰 实例 examples

提示语 prompt

Create a list of 8 questions for my interview with a science fiction author:

回答 sample response

  1. What inspired you to write science fiction?
  2. What themes do you typically explore in your work?
  3. How has the genre of science fiction evolved over time?
  4. What do you think sets your work apart from other science fiction authors?
  5. What advice would you give to aspiring science fiction authors?
  6. What are some of the most challenging aspects of writing science fiction?
  7. How has your writing process changed over the years?
  8. What do you think is the most important thing for readers to take away from your work?

API request

const { Configuration, OpenAIApi } = require("openai");

const configuration = new Configuration({
  apiKey: process.env.OPENAI_API_KEY,
});
const openai = new OpenAIApi(configuration);

const response = await openai.createCompletion({
  model: "text-davinci-003",
  prompt: "Create a list of 8 questions for my interview with a science fiction author:",
  temperature: 0.5,
  max_tokens: 150,
  top_p: 1.0,
  frequency_penalty: 0.0,
  presence_penalty: 0.0,
});

🌈prompt变体 variants

🧠思考:注意点、启发