@umituz/react-native-ai-generation-content 1.8.4 → 1.9.0

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.8.4",
3
+ "version": "1.9.0",
4
4
  "description": "Provider-agnostic AI generation orchestration for React Native",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
package/src/index.ts CHANGED
@@ -130,6 +130,25 @@ export type {
130
130
  ValidateResultOptions,
131
131
  } from "./infrastructure/utils";
132
132
 
133
+ // =============================================================================
134
+ // INFRASTRUCTURE LAYER - Wrappers
135
+ // =============================================================================
136
+
137
+ export {
138
+ enhancePromptWithLanguage,
139
+ getSupportedLanguages,
140
+ getLanguageName,
141
+ ModerationWrapper,
142
+ generateWithSimpleWrapper,
143
+ } from "./infrastructure/wrappers";
144
+
145
+ export type {
146
+ ModerationResult,
147
+ ModerationConfig,
148
+ SimpleGenerationInput,
149
+ SimpleGenerationConfig,
150
+ } from "./infrastructure/wrappers";
151
+
133
152
  // =============================================================================
134
153
  // PRESENTATION LAYER - Hooks
135
154
  // =============================================================================
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Generation Wrappers
3
+ * High-level API wrappers for simple generation tasks
4
+ */
5
+
6
+ export {
7
+ enhancePromptWithLanguage,
8
+ getSupportedLanguages,
9
+ getLanguageName,
10
+ } from "./language.wrapper";
11
+
12
+ export { ModerationWrapper } from "./moderation.wrapper";
13
+ export type { ModerationResult, ModerationConfig } from "./moderation.wrapper";
14
+
15
+ export { generateWithSimpleWrapper } from "./simple-generation.wrapper";
16
+ export type {
17
+ SimpleGenerationInput,
18
+ SimpleGenerationConfig,
19
+ } from "./simple-generation.wrapper";
@@ -0,0 +1,55 @@
1
+ /**
2
+ * Language Wrapper
3
+ * Enhances prompts with language instructions for multi-language support
4
+ */
5
+
6
+ const LANGUAGE_NAMES: Record<string, string> = {
7
+ tr: "Turkish",
8
+ es: "Spanish",
9
+ fr: "French",
10
+ de: "German",
11
+ it: "Italian",
12
+ pt: "Portuguese",
13
+ ru: "Russian",
14
+ ja: "Japanese",
15
+ ko: "Korean",
16
+ zh: "Chinese",
17
+ ar: "Arabic",
18
+ hi: "Hindi",
19
+ th: "Thai",
20
+ vi: "Vietnamese",
21
+ pl: "Polish",
22
+ nl: "Dutch",
23
+ sv: "Swedish",
24
+ no: "Norwegian",
25
+ da: "Danish",
26
+ fi: "Finnish",
27
+ ro: "Romanian",
28
+ bg: "Bulgarian",
29
+ uk: "Ukrainian",
30
+ cs: "Czech",
31
+ hu: "Hungarian",
32
+ id: "Indonesian",
33
+ ms: "Malay",
34
+ tl: "Filipino",
35
+ };
36
+
37
+ export function enhancePromptWithLanguage(
38
+ prompt: string,
39
+ languageCode?: string,
40
+ ): string {
41
+ if (!languageCode || languageCode === "en") {
42
+ return prompt;
43
+ }
44
+
45
+ const languageName = LANGUAGE_NAMES[languageCode] || "the user's language";
46
+ return `${prompt}\n\nPlease respond in ${languageName} language.`;
47
+ }
48
+
49
+ export function getSupportedLanguages(): string[] {
50
+ return Object.keys(LANGUAGE_NAMES);
51
+ }
52
+
53
+ export function getLanguageName(code: string): string | undefined {
54
+ return LANGUAGE_NAMES[code];
55
+ }
@@ -0,0 +1,37 @@
1
+ /**
2
+ * Moderation Wrapper
3
+ * Generic content moderation interface (app provides implementation)
4
+ */
5
+
6
+ export interface ModerationResult {
7
+ allowed: boolean;
8
+ error?: string;
9
+ violations?: Array<{
10
+ rule: string;
11
+ suggestion?: string;
12
+ }>;
13
+ }
14
+
15
+ export interface ModerationConfig {
16
+ check: (content: string) => Promise<ModerationResult>;
17
+ }
18
+
19
+ export class ModerationWrapper {
20
+ private static config: ModerationConfig | null = null;
21
+
22
+ static configure(config: ModerationConfig): void {
23
+ this.config = config;
24
+ }
25
+
26
+ static async checkContent(content: string): Promise<ModerationResult> {
27
+ if (!this.config) {
28
+ return { allowed: true };
29
+ }
30
+
31
+ return this.config.check(content);
32
+ }
33
+
34
+ static isConfigured(): boolean {
35
+ return this.config !== null;
36
+ }
37
+ }
@@ -0,0 +1,101 @@
1
+ /**
2
+ * Simple Generation Wrapper
3
+ * High-level API for simple text/image generation without background jobs
4
+ */
5
+
6
+ import type { GenerationResult } from "../../domain/entities";
7
+ import { enhancePromptWithLanguage } from "./language.wrapper";
8
+ import { ModerationWrapper } from "./moderation.wrapper";
9
+
10
+ export interface SimpleGenerationInput {
11
+ prompt: string;
12
+ userId?: string;
13
+ type?: string;
14
+ languageCode?: string;
15
+ metadata?: Record<string, any>;
16
+ }
17
+
18
+ export interface SimpleGenerationConfig<T = any> {
19
+ checkCredits?: (userId: string, type: string) => Promise<boolean>;
20
+ deductCredits?: (userId: string, type: string) => Promise<void>;
21
+ execute: (prompt: string, metadata?: Record<string, any>) => Promise<T>;
22
+ }
23
+
24
+ export async function generateWithSimpleWrapper<T = string>(
25
+ input: SimpleGenerationInput,
26
+ config: SimpleGenerationConfig<T>,
27
+ ): Promise<GenerationResult<T>> {
28
+ // Check user ID if required
29
+ if (config.checkCredits && !input.userId) {
30
+ return createErrorResult("user_id_required");
31
+ }
32
+
33
+ // Check credits if configured
34
+ if (config.checkCredits && input.userId) {
35
+ const hasCredits = await config.checkCredits(
36
+ input.userId,
37
+ input.type || "generation",
38
+ );
39
+ if (!hasCredits) {
40
+ return createErrorResult("insufficient_credits");
41
+ }
42
+ }
43
+
44
+ // Check content moderation if configured
45
+ if (ModerationWrapper.isConfigured()) {
46
+ const moderationResult = await ModerationWrapper.checkContent(input.prompt);
47
+ if (!moderationResult.allowed) {
48
+ return createErrorResult(
49
+ moderationResult.error || "content_policy_violation",
50
+ );
51
+ }
52
+ }
53
+
54
+ // Enhance prompt with language
55
+ const enhancedPrompt = enhancePromptWithLanguage(
56
+ input.prompt,
57
+ input.languageCode,
58
+ );
59
+
60
+ // Execute generation
61
+ try {
62
+ const result = await config.execute(enhancedPrompt, input.metadata);
63
+
64
+ // Deduct credits if configured
65
+ if (config.deductCredits && input.userId) {
66
+ await config.deductCredits(input.userId, input.type || "generation");
67
+ }
68
+
69
+ return createSuccessResult(result);
70
+ } catch (error) {
71
+ return createErrorResult(
72
+ error instanceof Error ? error.message : "generation_failed",
73
+ );
74
+ }
75
+ }
76
+
77
+ function createSuccessResult<T>(data: T): GenerationResult<T> {
78
+ return {
79
+ success: true,
80
+ data,
81
+ metadata: {
82
+ model: "default",
83
+ startTime: Date.now(),
84
+ endTime: Date.now(),
85
+ duration: 0,
86
+ },
87
+ };
88
+ }
89
+
90
+ function createErrorResult<T>(error: string): GenerationResult<T> {
91
+ return {
92
+ success: false,
93
+ error,
94
+ metadata: {
95
+ model: "default",
96
+ startTime: Date.now(),
97
+ endTime: Date.now(),
98
+ duration: 0,
99
+ },
100
+ };
101
+ }