@umituz/react-native-ai-generation-content 1.17.96 → 1.17.97
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Text-to-Image Example Prompts
|
|
3
|
+
* @description Default prompt suggestions for text-to-image generation
|
|
4
|
+
* @note NEVER use emojis in prompts - Imagen API only supports English text
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
export interface ExamplePrompt {
|
|
8
|
+
id: string;
|
|
9
|
+
text: string;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export const DEFAULT_TEXT_TO_IMAGE_PROMPTS: readonly ExamplePrompt[] = [
|
|
13
|
+
{ id: "sunset", text: "A beautiful sunset over mountains with vibrant colors" },
|
|
14
|
+
{ id: "cityscape", text: "Futuristic cityscape at night with neon lights" },
|
|
15
|
+
{ id: "forest", text: "Enchanted forest with magical glowing mushrooms" },
|
|
16
|
+
{ id: "coffee", text: "Cozy coffee shop interior on a rainy day" },
|
|
17
|
+
{ id: "spaceship", text: "Spaceship traveling through colorful nebula" },
|
|
18
|
+
{ id: "dragon", text: "Dragon flying over snow-capped mountain peaks" },
|
|
19
|
+
{ id: "underwater", text: "Underwater coral reef with tropical fish" },
|
|
20
|
+
{ id: "castle", text: "Medieval castle on a cliff during golden hour" },
|
|
21
|
+
] as const;
|