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

创意生成器:VR fitness idea generator

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

Create ideas for fitness and virtual reality games.

打分
★★★☆☆
关键词
创意
来自
URL
https://platform.openai.com/examples/default-vr-fitness

🌰 实例 examples

提示语 prompt

Brainstorm some ideas combining VR and fitness:

回答 sample response

  1. Virtual reality-based fitness classes
  2. Home workout programs using virtual reality technology
  3. Interactive video game-style workouts with a virtual trainer
  4. Virtual running races against other players in VR worlds
  5. Immersive yoga and Pilates sessions set in exotic locations
  6. Sports simulations involving simulated physical activity within the VR world
  7. Group fitness challenges that involve competing against opponents in a virtual environment
  8. Adaptive exercise programs tailored to individual’s goals or health conditions

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: "Brainstorm some ideas combining VR and fitness:",
  temperature: 0.6,
  max_tokens: 150,
  top_p: 1.0,
  frequency_penalty: 1,
  presence_penalty: 1,
});