@umituz/react-native-ai-generation-content 1.40.4 → 1.40.6

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
2
  "name": "@umituz/react-native-ai-generation-content",
3
- "version": "1.40.4",
3
+ "version": "1.40.6",
4
4
  "description": "Provider-agnostic AI generation orchestration for React Native with result preview components",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -68,8 +68,8 @@ ${PHOTOREALISTIC_RENDERING}
68
68
  ${NATURAL_POSE_GUIDELINES}`;
69
69
 
70
70
  /**
71
- * Creates a complete AI prompt with identity preservation
72
- *
71
+ * Creates a complete photorealistic AI prompt with identity preservation
72
+ *
73
73
  * @param scenarioPrompt - The specific scenario description
74
74
  * @param options - Optional customization
75
75
  * @returns Complete AI-ready prompt
@@ -85,7 +85,7 @@ export interface CreatePromptOptions {
85
85
  customInstructions?: string;
86
86
  }
87
87
 
88
- export const createEnhancedPrompt = (
88
+ export const createPhotorealisticPrompt = (
89
89
  scenarioPrompt: string,
90
90
  options: CreatePromptOptions = {}
91
91
  ): string => {
@@ -157,7 +157,7 @@ FINAL COMMAND: Transform the input person into a photorealistic ${styleName}. Th
157
157
  /**
158
158
  * Simplified prompt for scenarios that already include detailed instructions
159
159
  * Adds only the essential identity preservation layer
160
- *
160
+ *
161
161
  * @param existingPrompt - The existing detailed prompt
162
162
  * @returns Enhanced prompt with identity preservation
163
163
  */
@@ -89,7 +89,7 @@ export {
89
89
  PHOTOREALISTIC_RENDERING,
90
90
  NATURAL_POSE_GUIDELINES,
91
91
  MASTER_BASE_PROMPT,
92
- createEnhancedPrompt,
92
+ createPhotorealisticPrompt,
93
93
  createTransformationPrompt,
94
94
  enhanceExistingPrompt,
95
95
  } from './domain/entities/BasePromptStructure';