@umituz/react-native-ai-fal-provider 1.0.25 → 1.0.26
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-fal-provider",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.26",
|
|
4
4
|
"description": "FAL AI provider for React Native - implements IAIProvider interface for unified AI generation",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -155,7 +155,16 @@ export class FalProvider implements IAIProvider {
|
|
|
155
155
|
const result = await fal.run(model, { input });
|
|
156
156
|
|
|
157
157
|
if (typeof __DEV__ !== "undefined" && __DEV__) {
|
|
158
|
-
console.log("[FalProvider] run()
|
|
158
|
+
console.log("[FalProvider] run() raw result:", JSON.stringify(result, null, 2));
|
|
159
|
+
console.log("[FalProvider] run() result type:", typeof result);
|
|
160
|
+
console.log("[FalProvider] run() result keys:", result ? Object.keys(result as object) : "null");
|
|
161
|
+
const r = result as Record<string, unknown>;
|
|
162
|
+
if (r?.data) {
|
|
163
|
+
console.log("[FalProvider] run() has data property, data keys:", Object.keys(r.data as object));
|
|
164
|
+
}
|
|
165
|
+
if (r?.images) {
|
|
166
|
+
console.log("[FalProvider] run() has images property, images:", JSON.stringify(r.images));
|
|
167
|
+
}
|
|
159
168
|
}
|
|
160
169
|
|
|
161
170
|
options?.onProgress?.({ progress: 100, status: "COMPLETED" });
|