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

Product name generator 生成产品名称

一级分类
工作
二级分类
创意类
简介

Create product names from examples words. Influenced by a community prompt.

打分
★★★☆☆
关键词
创意
来自
howie.serious
URL
https://platform.openai.com/examples/default-product-name-gen

🌰 实例 examples

提示语 prompt

Product description: A home milkshake maker Seed words: fast, healthy, compact. Product names: HomeShaker, Fit Shaker, QuickShake, Shake Maker

Product description: A pair of shoes that can fit any foot size. Seed words: adaptable, fit, omni-fit.

回答 sample response

Product names: AdaptFit, OmniSecure, Fit-All, AdaptShoes.

API request

🌈prompt变体 variants

🧠思考:注意点、启发

Logo

serious, patient, unbreakable

ⓒ candobear life-learning community, 2023

WeChatX
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: "Product description: A home milkshake maker\nSeed words: fast, healthy, compact.\nProduct names: HomeShaker, Fit Shaker, QuickShake, Shake Maker\n\nProduct description: A pair of shoes that can fit any foot size.\nSeed words: adaptable, fit, omni-fit.",
  temperature: 0.8,
  max_tokens: 60,
  top_p: 1.0,
  frequency_penalty: 0.0,
  presence_penalty: 0.0,
});