Spaces:
Paused
Paused
Update src/app/interface/panel/index.tsx
Browse files
src/app/interface/panel/index.tsx
CHANGED
@@ -101,7 +101,8 @@ export function Panel({
|
|
101 |
|
102 |
// TODO: here we never reset the revision, so only the first user
|
103 |
// comic will be cached (we should fix that later)
|
104 |
-
withCache: revision === 0
|
|
|
105 |
})
|
106 |
} catch (err) {
|
107 |
// "Failed to load the panel! Don't worry, we are retrying..")
|
@@ -110,6 +111,7 @@ export function Panel({
|
|
110 |
width,
|
111 |
height,
|
112 |
withCache,
|
|
|
113 |
})
|
114 |
}
|
115 |
|
@@ -168,6 +170,7 @@ export function Panel({
|
|
168 |
width,
|
169 |
height,
|
170 |
withCache: false,
|
|
|
171 |
})
|
172 |
setRendered(panelId, newAttempt)
|
173 |
} catch (err) {
|
|
|
101 |
|
102 |
// TODO: here we never reset the revision, so only the first user
|
103 |
// comic will be cached (we should fix that later)
|
104 |
+
withCache: revision === 0,
|
105 |
+
renderingEngine: 'FAL_AI'
|
106 |
})
|
107 |
} catch (err) {
|
108 |
// "Failed to load the panel! Don't worry, we are retrying..")
|
|
|
111 |
width,
|
112 |
height,
|
113 |
withCache,
|
114 |
+
renderingEngine: 'INFERENCE_API'
|
115 |
})
|
116 |
}
|
117 |
|
|
|
170 |
width,
|
171 |
height,
|
172 |
withCache: false,
|
173 |
+
renderingEngine: 'INFERENCE_API'
|
174 |
})
|
175 |
setRendered(panelId, newAttempt)
|
176 |
} catch (err) {
|