mrrobot1024 commited on
Commit
80ed4c7
·
1 Parent(s): a8b79ed

Changed the directory structure. Made significant code changes including usage of design patterns and improved code readability.

Browse files
Files changed (1) hide show
  1. .gitignore +27 -109
.gitignore CHANGED
@@ -1,117 +1,35 @@
1
- # Python
2
- __pycache__/
3
- *.py[cod]
4
- *$py.class
5
- *.so
6
- .Python
7
- build/
8
- develop-eggs/
9
- dist/
10
- downloads/
11
- eggs/
12
- .eggs/
13
- lib/
14
- lib64/
15
- parts/
16
- sdist/
17
- var/
18
- wheels/
19
- *.egg-info/
20
- .installed.cfg
21
- *.egg
22
- MANIFEST
23
-
24
- # Python Virtual Environments
25
- env/
26
- venv/
27
- ENV/
28
- env.bak/
29
- venv.bak/
30
- .env
31
- .venv
32
-
33
- # Jupyter Notebook
34
- .ipynb_checkpoints
35
- */.ipynb_checkpoints/*
36
-
37
- # IDE specific files
38
- .idea/
39
- .vscode/
40
- *.swp
41
- *.swo
42
- *.swn
43
- .DS_Store
44
-
45
- # API keys and secrets
46
- .env
47
- .secrets
48
- *.pem
49
- *.key
50
- langsmith_api_key.txt
51
-
52
- # Logs and databases
53
- *.log
54
- *.sql
55
- *.sqlite
56
- logs/
57
 
58
- # Local development settings
59
- local_settings.py
 
60
 
61
- # Pytest and coverage reports
62
- .pytest_cache/
63
- htmlcov/
64
- .tox/
65
- .coverage
66
- .coverage.*
67
- coverage.xml
68
- *.cover
69
- .hypothesis/
70
- .pylintrcls
71
 
72
- # Documentation
73
- docs/_build/
74
- site/
75
 
76
- # Type checking
77
- .mypy_cache/
78
- .dmypy.json
79
- dmypy.json
80
- .pyre/
81
 
82
- # LangChain related
83
- .langchain.db
84
- langsmith.db
85
- .langgraph_api/
86
 
87
- # Temporary files
88
- tmp/
89
- tests/
90
- temp/
91
- *.tmp
92
- *.temp
93
 
94
- # LangGraph specific
95
- langgraph.db
96
- *.db
97
-
98
- # Output files (if you generate reports/documents)
99
- output/
100
- reports/
101
- generated/
102
-
103
- # Test artifacts
104
- .pytest_cache/
105
- test-results/
106
- test_output/
107
-
108
- # OS specific
109
- Thumbs.db
110
- ehthumbs.db
111
- Desktop.ini
112
-
113
- # Github
114
- .github/
115
 
116
- # Miscellaneous
117
- parsed_text.json
 
1
+ ## Ignore runtime artifacts and local secrets inside the package
2
+ # Patterns here are relative to the `src/` directory
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
 
4
+ # Environment / secret files
5
+ job_writing_agent/.env
6
+ job_writing_agent/.env.*
7
 
8
+ # Jupyter notebooks
9
+ job_writing_agent/*.ipynb
 
 
 
 
 
 
 
 
10
 
11
+ # LangGraph runtime artifacts (pickles, stores, checkpoints)
12
+ job_writing_agent/.langgraph_api/
 
13
 
14
+ # Logs
15
+ job_writing_agent/logs/
 
 
 
16
 
17
+ # Pickle / serialized data
18
+ job_writing_agent/**/*.pkl
19
+ job_writing_agent/**/*.pckl
20
+ job_writing_agent/**/*.pickle
21
 
22
+ # Compiled Python files / caches
23
+ job_writing_agent/**/__pycache__/
24
+ job_writing_agent/**/*.py[cod]
25
+ job_writing_agent/**/*.pyc
 
 
26
 
27
+ # General patterns (repo-relative ones can still live here)
28
+ *.ipynb
29
+ *.pkl
30
+ *.pckl
31
+ *.pickle
32
+ __pycache__/
33
+ *.py[cod]
34
+ *.pyc
 
 
 
 
 
 
 
 
 
 
 
 
 
35