Spaces:
Runtime error
Runtime error
About page
Browse files
frontend/src/lib/App.svelte
CHANGED
@@ -184,8 +184,41 @@
|
|
184 |
>
|
185 |
<div class="max-w-md">
|
186 |
<h2 class="font-bold text-xl font-mono">Stable Difussion Multiplayer</h2>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
<p class="text-base">
|
188 |
-
Multiplayer API
|
189 |
<LiveBlocks />
|
190 |
</p>
|
191 |
</div>
|
|
|
184 |
>
|
185 |
<div class="max-w-md">
|
186 |
<h2 class="font-bold text-xl font-mono">Stable Difussion Multiplayer</h2>
|
187 |
+
<p>
|
188 |
+
Hugging Face face GPU Spaces https://huggingface.co/docs/hub/spaces-gpus Diffusers
|
189 |
+
https://huggingface.co/docs/diffusers/index
|
190 |
+
</p>
|
191 |
+
<p>
|
192 |
+
Thanks to <a
|
193 |
+
href="https://twitter.com/lkwq007"
|
194 |
+
target="_blank"
|
195 |
+
rel="noopener noreferrer"
|
196 |
+
class="text-blue-400 underline hover:no-underline"
|
197 |
+
>
|
198 |
+
Lnyan</a
|
199 |
+
>
|
200 |
+
for the original outpaiting technique implemented on
|
201 |
+
<a
|
202 |
+
href="https://github.com/lkwq007/stablediffusion-infinity"
|
203 |
+
target="_blank"
|
204 |
+
rel="noopener noreferrer"
|
205 |
+
class="text-blue-400 underline hover:no-underline"
|
206 |
+
>Stable Diffusion Infinity
|
207 |
+
</a>.
|
208 |
+
</p>
|
209 |
+
<h2 class="font-bold text-lg font-mono" />
|
210 |
+
<p>
|
211 |
+
Runwayml Inpaiting Stable Diffusion
|
212 |
+
<a
|
213 |
+
href="https://github.com/runwayml/stable-diffusion"
|
214 |
+
target="_blank"
|
215 |
+
rel="noopener noreferrer"
|
216 |
+
>
|
217 |
+
https://github.com/runwayml/stable-diffusion</a
|
218 |
+
>
|
219 |
+
</p>
|
220 |
<p class="text-base">
|
221 |
+
Multiplayer API by
|
222 |
<LiveBlocks />
|
223 |
</p>
|
224 |
</div>
|
stablediffusion-infinity/app.py
CHANGED
@@ -29,9 +29,6 @@ AWS_S3_BUCKET_NAME = os.getenv('AWS_S3_BUCKET_NAME')
|
|
29 |
LIVEBLOCKS_SECRET = os.environ.get("LIVEBLOCKS_SECRET")
|
30 |
HF_TOKEN = os.environ.get("API_TOKEN") or True
|
31 |
|
32 |
-
if (AWS_ACCESS_KEY_ID == None or AWS_SECRET_KEY == None or AWS_S3_BUCKET_NAME == None or LIVEBLOCKS_SECRET == None):
|
33 |
-
raise Exception("Missing environment variables")
|
34 |
-
|
35 |
FILE_TYPES = {
|
36 |
'image/png': 'png',
|
37 |
'image/jpeg': 'jpg',
|
|
|
29 |
LIVEBLOCKS_SECRET = os.environ.get("LIVEBLOCKS_SECRET")
|
30 |
HF_TOKEN = os.environ.get("API_TOKEN") or True
|
31 |
|
|
|
|
|
|
|
32 |
FILE_TYPES = {
|
33 |
'image/png': 'png',
|
34 |
'image/jpeg': 'jpg',
|
stablediffusion-infinity/rooms.db
CHANGED
Binary files a/stablediffusion-infinity/rooms.db and b/stablediffusion-infinity/rooms.db differ
|
|