Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -1,21 +1,7 @@
|
|
1 |
# import ingest
|
2 |
import sys
|
3 |
import os
|
4 |
-
|
5 |
-
# Diret贸rio que voc锚 deseja listar
|
6 |
-
diretorio = os.path.dirname(__file__)
|
7 |
-
|
8 |
-
# Lista todos os arquivos no diret贸rio
|
9 |
-
itens = os.listdir(diretorio)
|
10 |
-
|
11 |
-
for item in itens:
|
12 |
-
caminho_item = os.path.join(diretorio, item)
|
13 |
-
if os.path.isfile(caminho_item):
|
14 |
-
print(f"Arquivo: {item}")
|
15 |
-
elif os.path.isdir(caminho_item):
|
16 |
-
print(f"Pasta: {item}")
|
17 |
-
|
18 |
-
|
19 |
|
20 |
# Diret贸rio que voc锚 deseja listar
|
21 |
diretorio = os.path.join(os.path.dirname(__file__), '..')
|
@@ -30,24 +16,6 @@ for item in itens:
|
|
30 |
elif os.path.isdir(caminho_item):
|
31 |
print(f"Pasta: {item}")
|
32 |
|
33 |
-
|
34 |
-
# Add the data directory to sys.path
|
35 |
-
sys.path.append(data_path)
|
36 |
-
|
37 |
-
from localGPTUI import frontend
|
38 |
-
|
39 |
-
localGPTUI.main()
|
40 |
-
|
41 |
-
# ingest.main()
|
42 |
-
|
43 |
-
|
44 |
-
data_path = os.path.join(os.path.dirname(__file__), 'localGPTUI')
|
45 |
-
|
46 |
-
# Add the data directory to sys.path
|
47 |
-
sys.path.append(data_path)
|
48 |
-
|
49 |
-
from localGPTUI import frontend
|
50 |
-
|
51 |
frontend.main()
|
52 |
|
53 |
# ingest.main()
|
|
|
1 |
# import ingest
|
2 |
import sys
|
3 |
import os
|
4 |
+
import frontend
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
# Diret贸rio que voc锚 deseja listar
|
7 |
diretorio = os.path.join(os.path.dirname(__file__), '..')
|
|
|
16 |
elif os.path.isdir(caminho_item):
|
17 |
print(f"Pasta: {item}")
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
frontend.main()
|
20 |
|
21 |
# ingest.main()
|