1import { openai } from "npm:@ai-sdk/openai";
2import { generateText } from "npm:ai";
3
12 }
13 const { text: projectIdeas } = await generateText({
14 model: openai("gpt-4o-mini"),
15 system: "You are a creative project idea generator.",
16 prompt: "Based on the following inspiration, brainstorm open-source project ideas: " + body.userInput,
1import { openai } from "npm:@ai-sdk/openai";
2import { generateText } from "npm:ai";
3
12 }
13 const { text: shopIdeas } = await generateText({
14 model: openai("gpt-4o-mini"),
15 system: "You are a creative business idea generator.",
16 prompt: `Generate a list of creative shop concepts based on the following inspiration: ${body.inspiration}`,
1import { openai } from "npm:@ai-sdk/openai";
2import { generateText } from "npm:ai";
3
12 }
13 const { text: shopIdeas } = await generateText({
14 model: openai("gpt-4o-mini"),
15 system: "You are a creative shop concept generator.",
16 prompt: "Generate a list of creative shop ideas based on the following inspiration: " + body.inspiration,
1import { openai } from "npm:@ai-sdk/openai";
2import { generateText } from "npm:ai";
3
12 }
13 const { text: newGameIdea } = await generateText({
14 model: openai("gpt-4o-mini"),
15 system: "You are a creative game designer specializing in Digimon-themed games.",
16 prompt: "Based on the following inspiration related to Digimon, generate a unique game concept: " + body.inspiration,
1import { openai } from "npm:@ai-sdk/openai";
2import { generateText } from "npm:ai";
3
12 }
13 const { text: newGameIdea } = await generateText({
14 model: openai("gpt-4o-mini"),
15 system: "You are a creative game designer specializing in Pokémon-inspired games.",
16 prompt: `Based on the following inspiration related to Pokémon, generate a unique game concept including mechanics, storylines, and character ideas: ${body.inspiration}`,
1import { openai } from "npm:@ai-sdk/openai";
2import { generateText } from "npm:ai";
3
20
21 const { text: gameIdea } = await generateText({
22 model: openai("gpt-4o-mini"),
23 system: "You are a creative game designer.",
24 prompt: prompt,
1import { openai } from "npm:@ai-sdk/openai";
2import { generateText } from "npm:ai";
3
23
24 const { text: gameIdeas } = await generateText({
25 model: openai("gpt-4o-mini"),
26 system: "You are a creative game designer.",
27 prompt: prompt.trim(),
1import { openai } from "npm:@ai-sdk/openai";
2import { generateText } from "npm:ai";
3
15
16 const { text: gameConcept } = await generateText({
17 model: openai("gpt-4o-mini"),
18 system: "You are a creative game designer.",
19 prompt: `Generate a unique game concept based on the following details:
1import { openai } from "npm:@ai-sdk/openai";
2import { generateText } from "npm:ai";
3
23
24 const { text: gameIdeas } = await generateText({
25 model: openai("gpt-4o-mini"),
26 system: "You are a creative game designer.",
27 prompt: prompt.trim(),
1```typescript
2import { openai } from "npm:@ai-sdk/openai";
3import { generateText } from "npm:ai";
4
13 }
14 const { text: gameConcepts } = await generateText({
15 model: openai("gpt-4o-mini"),
16 system: "You are a creative game designer.",
17 prompt: `Generate unique game concepts that blend elements from Pokémon and Digimon based on the theme: ${body.theme}. Include characters, mechanics, and storyline elements.`,