Refactor code structure for improved readability and maintainability
Browse files- .gitignore +3 -0
- 01_Dealing_with_the_Data.ipynb +0 -0
- pyproject.toml +12 -1
.gitignore
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Byte-compiled / optimized / DLL files
|
| 2 |
__pycache__/
|
| 3 |
*.py[cod]
|
|
|
|
| 1 |
+
data/
|
| 2 |
+
db/
|
| 3 |
+
|
| 4 |
# Byte-compiled / optimized / DLL files
|
| 5 |
__pycache__/
|
| 6 |
*.py[cod]
|
01_Dealing_with_the_Data.ipynb
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
pyproject.toml
CHANGED
|
@@ -4,4 +4,15 @@ version = "0.1.0"
|
|
| 4 |
description = "Add your description here"
|
| 5 |
readme = "README.md"
|
| 6 |
requires-python = ">=3.13"
|
| 7 |
-
dependencies = [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
description = "Add your description here"
|
| 5 |
readme = "README.md"
|
| 6 |
requires-python = ">=3.13"
|
| 7 |
+
dependencies = [
|
| 8 |
+
"ipykernel>=6.29.5",
|
| 9 |
+
"langchain>=0.3.25",
|
| 10 |
+
"langchain-community>=0.3.23",
|
| 11 |
+
"langchain-core>=0.3.59",
|
| 12 |
+
"langchain-huggingface>=0.2.0",
|
| 13 |
+
"langchain-openai>=0.3.16",
|
| 14 |
+
"langchain-text-splitters>=0.3.8",
|
| 15 |
+
"pandas>=2.2.3",
|
| 16 |
+
"qdrant-client>=1.14.2",
|
| 17 |
+
"unstructured[md]>=0.17.2",
|
| 18 |
+
]
|