Spaces:
Sleeping
Sleeping
Rohil Bansal
commited on
Commit
·
d6f6d34
1
Parent(s):
637ab98
made changes
Browse files- .gitignore +1 -0
- src/app/main.py +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
.env
|
src/app/main.py
CHANGED
@@ -11,6 +11,9 @@ from langchain.prompts import PromptTemplate
|
|
11 |
# Get the current working directory
|
12 |
current_dir = os.getcwd()
|
13 |
print(f"Starting directory: {current_dir}")
|
|
|
|
|
|
|
14 |
|
15 |
# Navigate upwards until finding the directory ending with 'Publiq'
|
16 |
while not current_dir.endswith('LegalAlly'):
|
|
|
11 |
# Get the current working directory
|
12 |
current_dir = os.getcwd()
|
13 |
print(f"Starting directory: {current_dir}")
|
14 |
+
print("Contents of the current directory:")
|
15 |
+
for item in os.listdir(current_dir):
|
16 |
+
print(item)
|
17 |
|
18 |
# Navigate upwards until finding the directory ending with 'Publiq'
|
19 |
while not current_dir.endswith('LegalAlly'):
|