@umituz/react-native-ai-generation-content 1.17.97 → 1.17.98
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* @description Default prompt suggestions for
|
|
2
|
+
* Example Prompts Constants
|
|
3
|
+
* @description Default prompt suggestions for AI generation features
|
|
4
4
|
* @note NEVER use emojis in prompts - Imagen API only supports English text
|
|
5
5
|
*/
|
|
6
6
|
|
|
@@ -19,3 +19,12 @@ export const DEFAULT_TEXT_TO_IMAGE_PROMPTS: readonly ExamplePrompt[] = [
|
|
|
19
19
|
{ id: "underwater", text: "Underwater coral reef with tropical fish" },
|
|
20
20
|
{ id: "castle", text: "Medieval castle on a cliff during golden hour" },
|
|
21
21
|
] as const;
|
|
22
|
+
|
|
23
|
+
export const DEFAULT_TEXT_TO_VOICE_PROMPTS: readonly ExamplePrompt[] = [
|
|
24
|
+
{ id: "welcome", text: "Welcome to our amazing product! We're excited to have you here." },
|
|
25
|
+
{ id: "story", text: "Once upon a time, in a land far away, there lived a wise old wizard who could speak to animals." },
|
|
26
|
+
{ id: "news", text: "Breaking news: Scientists have made a groundbreaking discovery that could change the world forever." },
|
|
27
|
+
{ id: "narration", text: "The sun was setting over the horizon, painting the sky in shades of orange and pink." },
|
|
28
|
+
{ id: "commercial", text: "Transform your business with our innovative solutions. Join thousands of satisfied customers today!" },
|
|
29
|
+
{ id: "podcast", text: "In today's episode, we'll explore the fascinating world of artificial intelligence and its impact on society." },
|
|
30
|
+
] as const;
|