一级分类
工作
二级分类
文字处理类
简介
Create interview questions.
打分
★★☆☆☆
关键词
职场
来自
🌰 实例 examples
提示语 prompt
Create a list of 8 questions for my interview with a science fiction author:
回答 sample response
- What inspired you to write science fiction?
- What themes do you typically explore in your work?
- How has the genre of science fiction evolved over time?
- What do you think sets your work apart from other science fiction authors?
- What advice would you give to aspiring science fiction authors?
- What are some of the most challenging aspects of writing science fiction?
- How has your writing process changed over the years?
- 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,
});