Spaces:
Running
on
Zero
Running
on
Zero
RageshAntony
commited on
added inspect
Browse files- check_app.py +4 -0
check_app.py
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
import spaces
|
2 |
import torch
|
|
|
3 |
from diffusers import (
|
4 |
FluxPipeline,
|
5 |
StableDiffusion3Pipeline,
|
@@ -12,6 +13,9 @@ from diffusers import (
|
|
12 |
)
|
13 |
import gradio as gr
|
14 |
|
|
|
|
|
|
|
15 |
cache_dir = '/workspace/hf_cache'
|
16 |
|
17 |
MODEL_CONFIGS = {
|
|
|
1 |
import spaces
|
2 |
import torch
|
3 |
+
from inspect import signature
|
4 |
from diffusers import (
|
5 |
FluxPipeline,
|
6 |
StableDiffusion3Pipeline,
|
|
|
13 |
)
|
14 |
import gradio as gr
|
15 |
|
16 |
+
print("PIPE ATTR")
|
17 |
+
print(signature(AuraFlowPipeline))
|
18 |
+
print(signature(LuminaText2ImgPipeline))
|
19 |
cache_dir = '/workspace/hf_cache'
|
20 |
|
21 |
MODEL_CONFIGS = {
|