Spaces:
Paused
Paused
Abdulrahman1989
commited on
Commit
·
fc352b3
1
Parent(s):
afeb5b7
get the path
Browse files
app.py
CHANGED
@@ -1,10 +1,12 @@
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
import tempfile
|
3 |
-
import os
|
4 |
from SDXLImageGenerator import SDXLImageGenerator # Import your existing class
|
5 |
import sys
|
6 |
from Image3DProcessor import Image3DProcessor # Import your 3D processing class
|
7 |
|
|
|
8 |
class ControlNetProcessor:
|
9 |
def controlnet_image(self, image):
|
10 |
# Placeholder for ControlNet processing (e.g., returning a processed image or placeholder text)
|
|
|
1 |
+
import os
|
2 |
+
print("Current working directory:", os.getcwd())
|
3 |
import gradio as gr
|
4 |
import tempfile
|
|
|
5 |
from SDXLImageGenerator import SDXLImageGenerator # Import your existing class
|
6 |
import sys
|
7 |
from Image3DProcessor import Image3DProcessor # Import your 3D processing class
|
8 |
|
9 |
+
|
10 |
class ControlNetProcessor:
|
11 |
def controlnet_image(self, image):
|
12 |
# Placeholder for ControlNet processing (e.g., returning a processed image or placeholder text)
|