ws-bom-robot-app 0.0.37__py3-none-any.whl → 0.0.103__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. ws_bom_robot_app/config.py +35 -7
  2. ws_bom_robot_app/cron_manager.py +15 -14
  3. ws_bom_robot_app/llm/agent_context.py +26 -0
  4. ws_bom_robot_app/llm/agent_description.py +123 -123
  5. ws_bom_robot_app/llm/agent_handler.py +176 -180
  6. ws_bom_robot_app/llm/agent_lcel.py +107 -54
  7. ws_bom_robot_app/llm/api.py +100 -7
  8. ws_bom_robot_app/llm/defaut_prompt.py +15 -15
  9. ws_bom_robot_app/llm/evaluator.py +319 -0
  10. ws_bom_robot_app/llm/feedbacks/__init__.py +0 -0
  11. ws_bom_robot_app/llm/feedbacks/feedback_manager.py +66 -0
  12. ws_bom_robot_app/llm/main.py +159 -110
  13. ws_bom_robot_app/llm/models/api.py +70 -5
  14. ws_bom_robot_app/llm/models/feedback.py +30 -0
  15. ws_bom_robot_app/llm/nebuly_handler.py +185 -0
  16. ws_bom_robot_app/llm/providers/llm_manager.py +244 -80
  17. ws_bom_robot_app/llm/tools/models/main.py +8 -0
  18. ws_bom_robot_app/llm/tools/tool_builder.py +68 -23
  19. ws_bom_robot_app/llm/tools/tool_manager.py +343 -133
  20. ws_bom_robot_app/llm/tools/utils.py +41 -25
  21. ws_bom_robot_app/llm/utils/agent.py +34 -0
  22. ws_bom_robot_app/llm/utils/chunker.py +6 -1
  23. ws_bom_robot_app/llm/utils/cleanup.py +81 -0
  24. ws_bom_robot_app/llm/utils/cms.py +123 -0
  25. ws_bom_robot_app/llm/utils/download.py +183 -79
  26. ws_bom_robot_app/llm/utils/print.py +29 -29
  27. ws_bom_robot_app/llm/vector_store/db/__init__.py +0 -0
  28. ws_bom_robot_app/llm/vector_store/db/base.py +193 -0
  29. ws_bom_robot_app/llm/vector_store/db/chroma.py +97 -0
  30. ws_bom_robot_app/llm/vector_store/db/faiss.py +91 -0
  31. ws_bom_robot_app/llm/vector_store/db/manager.py +15 -0
  32. ws_bom_robot_app/llm/vector_store/db/qdrant.py +73 -0
  33. ws_bom_robot_app/llm/vector_store/generator.py +137 -137
  34. ws_bom_robot_app/llm/vector_store/integration/api.py +216 -0
  35. ws_bom_robot_app/llm/vector_store/integration/azure.py +1 -1
  36. ws_bom_robot_app/llm/vector_store/integration/base.py +58 -15
  37. ws_bom_robot_app/llm/vector_store/integration/confluence.py +41 -11
  38. ws_bom_robot_app/llm/vector_store/integration/dropbox.py +1 -1
  39. ws_bom_robot_app/llm/vector_store/integration/gcs.py +1 -1
  40. ws_bom_robot_app/llm/vector_store/integration/github.py +22 -22
  41. ws_bom_robot_app/llm/vector_store/integration/googledrive.py +46 -17
  42. ws_bom_robot_app/llm/vector_store/integration/jira.py +112 -75
  43. ws_bom_robot_app/llm/vector_store/integration/manager.py +6 -2
  44. ws_bom_robot_app/llm/vector_store/integration/s3.py +1 -1
  45. ws_bom_robot_app/llm/vector_store/integration/sftp.py +1 -1
  46. ws_bom_robot_app/llm/vector_store/integration/sharepoint.py +7 -14
  47. ws_bom_robot_app/llm/vector_store/integration/shopify.py +143 -0
  48. ws_bom_robot_app/llm/vector_store/integration/sitemap.py +9 -1
  49. ws_bom_robot_app/llm/vector_store/integration/slack.py +3 -2
  50. ws_bom_robot_app/llm/vector_store/integration/thron.py +236 -0
  51. ws_bom_robot_app/llm/vector_store/loader/base.py +52 -8
  52. ws_bom_robot_app/llm/vector_store/loader/docling.py +71 -33
  53. ws_bom_robot_app/llm/vector_store/loader/json_loader.py +25 -25
  54. ws_bom_robot_app/main.py +148 -146
  55. ws_bom_robot_app/subprocess_runner.py +106 -0
  56. ws_bom_robot_app/task_manager.py +207 -54
  57. ws_bom_robot_app/util.py +65 -20
  58. ws_bom_robot_app-0.0.103.dist-info/METADATA +364 -0
  59. ws_bom_robot_app-0.0.103.dist-info/RECORD +76 -0
  60. {ws_bom_robot_app-0.0.37.dist-info → ws_bom_robot_app-0.0.103.dist-info}/WHEEL +1 -1
  61. ws_bom_robot_app/llm/settings.py +0 -4
  62. ws_bom_robot_app/llm/utils/agent_utils.py +0 -17
  63. ws_bom_robot_app/llm/utils/kb.py +0 -34
  64. ws_bom_robot_app-0.0.37.dist-info/METADATA +0 -277
  65. ws_bom_robot_app-0.0.37.dist-info/RECORD +0 -60
  66. {ws_bom_robot_app-0.0.37.dist-info → ws_bom_robot_app-0.0.103.dist-info}/top_level.txt +0 -0
@@ -1,277 +0,0 @@
1
- Metadata-Version: 2.2
2
- Name: ws_bom_robot_app
3
- Version: 0.0.37
4
- Summary: A FastAPI application serving ws bom/robot/llm platform ai.
5
- Home-page: https://github.com/websolutespa/bom
6
- Author: Websolute Spa
7
- Author-email: dev@websolute.it
8
- Classifier: Programming Language :: Python :: 3
9
- Classifier: License :: OSI Approved :: MIT License
10
- Classifier: Operating System :: OS Independent
11
- Requires-Python: >=3.12
12
- Description-Content-Type: text/markdown
13
- Requires-Dist: standardwebhooks==1.0.0
14
- Requires-Dist: apscheduler==3.11.0
15
- Requires-Dist: aiofiles==24.1.0
16
- Requires-Dist: pydantic==2.10.6
17
- Requires-Dist: pydantic-settings==2.7.1
18
- Requires-Dist: fastapi[standard]==0.115.8
19
- Requires-Dist: langchain==0.3.18
20
- Requires-Dist: langchain-community==0.3.17
21
- Requires-Dist: langchain-core==0.3.34
22
- Requires-Dist: langchain-openai==0.3.5
23
- Requires-Dist: langchain-anthropic==0.3.6
24
- Requires-Dist: langchain-google-genai==2.0.7
25
- Requires-Dist: langchain-google-vertexai==2.0.13
26
- Requires-Dist: langchain-groq==0.2.4
27
- Requires-Dist: langchain-ollama==0.2.3
28
- Requires-Dist: faiss-cpu==1.9.0
29
- Requires-Dist: chromadb==0.6.3
30
- Requires-Dist: langchain_chroma==0.2.1
31
- Requires-Dist: fastembed==0.5.1
32
- Requires-Dist: langchain-qdrant==0.2.0
33
- Requires-Dist: lark==1.2.2
34
- Requires-Dist: unstructured==0.16.17
35
- Requires-Dist: unstructured[image]
36
- Requires-Dist: unstructured-ingest==0.4.6
37
- Requires-Dist: unstructured-ingest[azure]
38
- Requires-Dist: unstructured-ingest[confluence]
39
- Requires-Dist: unstructured-ingest[dropbox]
40
- Requires-Dist: unstructured-ingest[gcs]
41
- Requires-Dist: unstructured-ingest[github]
42
- Requires-Dist: unstructured-ingest[google_drive]
43
- Requires-Dist: unstructured-ingest[jira]
44
- Requires-Dist: unstructured-ingest[s3]
45
- Requires-Dist: unstructured-ingest[sftp]
46
- Requires-Dist: unstructured-ingest[sharepoint]
47
- Requires-Dist: unstructured-ingest[slack]
48
- Requires-Dist: html5lib==1.1
49
- Requires-Dist: markdownify==0.14.1
50
- Requires-Dist: nebuly==0.3.36
51
- Dynamic: author
52
- Dynamic: author-email
53
- Dynamic: classifier
54
- Dynamic: description
55
- Dynamic: description-content-type
56
- Dynamic: home-page
57
- Dynamic: requires-dist
58
- Dynamic: requires-python
59
- Dynamic: summary
60
-
61
- # 🤖 ws-bom-robot-app
62
-
63
- A `FastAPI` application serving ws bom/robot/llm platform ai
64
-
65
- ## 🌵 Minimal app structure
66
-
67
- ```env
68
- app/
69
- |-- .env
70
- |-- main.py
71
- ```
72
-
73
- Fill `main.py` with the following code:
74
-
75
- ```python
76
- from ws_bom_robot_app import main
77
- app = main.app
78
- ```
79
-
80
- FIll `.env` with the following code:
81
-
82
- ```env
83
- #robot_env=local/development/production
84
- robot_env=local
85
- robot_user='[user]'
86
- robot_password='[pwd]'
87
- robot_data_folder='./.data'
88
- robot_cms_auth='[auth]'
89
- robot_cms_host='https://[DOMAIN]'
90
- robot_cms_db_folder=llmVectorDb
91
- robot_cms_files_folder=llmKbFile
92
- ```
93
-
94
- ## 🚀 Run the app
95
-
96
- - development
97
-
98
- ```bash
99
- fastapi dev --port 6001
100
- #uvicorn main:app --app-dir ./ws_bom_robot_app --reload --host 0.0.0.0 --port 6001
101
- ```
102
-
103
- - production
104
-
105
- ```bash
106
- uvicorn main:app --host 0.0.0.0 --port 6001
107
- ```
108
-
109
- - production with [multipler workers](https://fastapi.tiangolo.com/deployment/server-workers/#multiple-workers)
110
-
111
- ```bash
112
- fastapi run --port 6001 --workers 4
113
- #uvicorn main:app --host 0.0.0.0 --port 6001 --workers 4
114
- #gunicorn -w 4 -k uvicorn.workers.UvicornWorker main:app --bind
115
- ```
116
-
117
- ### 🔖 Windows requirements
118
-
119
- #### libmagic (mandatory)
120
-
121
- ```bash
122
- py -m pip install --upgrade python-magic-bin
123
- ```
124
-
125
- #### tesseract-ocr (mandatory)
126
-
127
- [Install tesseract](https://github.com/UB-Mannheim/tesseract/wiki)
128
- [Last win-64 release](https://github.com/tesseract-ocr/tesseract/releases/download/5.5.0/tesseract-ocr-w64-setup-5.5.0.20241111.exe)
129
-
130
- Add tesseract executable (C:\Program Files\Tesseract-OCR) to system PATH
131
-
132
- ```pwsh
133
- $pathToAdd = "C:\Program Files\Tesseract-OCR"; `
134
- $currentPath = [System.Environment]::GetEnvironmentVariable("Path", [System.EnvironmentVariableTarget]::Machine); `
135
- if ($currentPath -split ';' -notcontains $pathToAdd) { `
136
- [System.Environment]::SetEnvironmentVariable("Path", "$currentPath;$pathToAdd", [System.EnvironmentVariableTarget]::Machine) `
137
- }
138
- ```
139
-
140
- #### docling
141
-
142
- Set the following environment variables
143
-
144
- ```pwsh
145
- KMP_DUPLICATE_LIB_OK=TRUE
146
- ```
147
-
148
- #### libreoffice (optional: for robot_env set to development/production)
149
-
150
- [Install libreoffice](https://www.libreoffice.org/download/download-libreoffice/)
151
- [Last win-64 release](https://download.documentfoundation.org/libreoffice/stable/24.8.2/win/x86_64/LibreOffice_24.8.2_Win_x86-64.msi)
152
-
153
- Add libreoffice executable (C:\Program Files\LibreOffice\program) to system PATH
154
-
155
- ```pwsh
156
- $pathToAdd = "C:\Program Files\LibreOffice\program"; `
157
- $currentPath = [System.Environment]::GetEnvironmentVariable("Path", [System.EnvironmentVariableTarget]::Machine); `
158
- if ($currentPath -split ';' -notcontains $pathToAdd) { `
159
- [System.Environment]::SetEnvironmentVariable("Path", "$currentPath;$pathToAdd", [System.EnvironmentVariableTarget]::Machine) `
160
- }
161
- ```
162
-
163
- #### poppler (optional: for robot_env set to development/production)
164
-
165
- [Download win poppler release](https://github.com/oschwartz10612/poppler-windows/releases)
166
- Extract the zip, copy the nested folder "poppler-x.x.x." to a program folder (e.g. C:\Program Files\poppler-24.08.0)
167
- Add poppler executable (C:\Program Files\poppler-24.08.0\Library\bin) to system PATH
168
-
169
- ```pwsh
170
- $pathToAdd = "C:\Program Files\poppler-24.08.0\Library\bin"; `
171
- $currentPath = [System.Environment]::GetEnvironmentVariable("Path", [System.EnvironmentVariableTarget]::Machine); `
172
- if ($currentPath -split ';' -notcontains $pathToAdd) { `
173
- [System.Environment]::SetEnvironmentVariable("Path", "$currentPath;$pathToAdd", [System.EnvironmentVariableTarget]::Machine) `
174
- }
175
- ```
176
-
177
- ---
178
-
179
- ## 👷 Contributors
180
-
181
- Build/distribute pkg from `websolutespa` bom [[Github](https://github.com/websolutespa/bom)]
182
-
183
- > dir in `robot` project folder
184
-
185
- ```bash
186
- cd ./src/robot
187
- ```
188
-
189
- ### 🔖 requirements
190
-
191
- ```bash
192
- py -m pip install --upgrade setuptools build twine streamlit
193
- ```
194
-
195
- ### 🪛 build
196
-
197
- ```pwsh
198
- if (Test-Path ./dist) {rm ./dist -r -force}; `
199
- py -m build && twine check dist/*
200
- ```
201
-
202
- ### 📦 test / 🧪 debugger
203
-
204
- Install the package in editable project location
205
-
206
- ```pwsh
207
- py -m pip install --upgrade -e .
208
- py -m pip show ws-bom-robot-app
209
- ```
210
-
211
- code quality tools
212
-
213
- ```pwsh
214
- # .\src\robot
215
- !py -m pip install -U scanreq prospector[with_everything]
216
- ## unused requirements
217
- scanreq -r requirements.txt -p ./ws_bom_robot_app
218
- ## style/linting
219
- prospector ./ws_bom_robot_app -t pylint -t pydocstyle
220
- ## code quality/complexity
221
- prospector ./ws_bom_robot_app -t vulture -t mccabe -t mypy
222
- ## security
223
- prospector ./ws_bom_robot_app -t dodgy -t bandit
224
- ## package
225
- prospector ./ws_bom_robot_app -t pyroma
226
- ```
227
-
228
- lauch pytest
229
-
230
- ```pwsh
231
- !py -m pip install -U pytest pytest-asyncio pytest-mock pytest-cov pyclean
232
- # clean cache if needed
233
- # pyclean --verbose .
234
- pytest --cov=ws_bom_robot_app --log-cli-level=info
235
- # directory
236
- # pytest --cov=ws_bom_robot_app --log-cli-level=info ./tests/app/llm/vector_store/db
237
- ```
238
-
239
- launch debugger
240
-
241
- ```pwsh
242
- streamlit run debugger.py --server.port 6011
243
- ```
244
-
245
- dockerize base image
246
-
247
- ```pwsh
248
- <# cpu #>
249
- docker build -f Dockerfile-robot-base-cpu -t ghcr.io/websolutespa/ws-bom-robot-base:cpu .
250
- docker push ghcr.io/websolutespa/ws-bom-robot-base:cpu
251
- <# gpu #>
252
- docker build -f Dockerfile-robot-base-gpu -t ghcr.io/websolutespa/ws-bom-robot-base:gpu .
253
- docker push ghcr.io/websolutespa/ws-bom-robot-base:gpu
254
- ```
255
-
256
- dockerize app from src
257
-
258
- ```pwsh
259
- docker build -f Dockerfile-src -t ws-bom-robot-app:src .
260
- docker run --name ws-bom-robot-app-src -d -v "$(pwd)/ws_bom_robot_app:/app/ws_bom_robot_app" -v "$(pwd)/.data:/app/.data" -v "$(pwd)/tests:/app/tests" -v "$(pwd)/tmp:/tmp" -p 6002:6001 ws-bom-robot-app:src
261
- ```
262
-
263
- ### ✈️ publish
264
-
265
- - [testpypi](https://test.pypi.org/project/ws-bom-robot-app/)
266
-
267
- ```pwsh
268
- twine upload --verbose -r testpypi dist/*
269
- #py -m pip install -i https://test.pypi.org/simple/ --upgrade ws-bom-robot-app
270
- ```
271
-
272
- - [pypi](https://pypi.org/project/ws-bom-robot-app/)
273
-
274
- ```pwsh
275
- twine upload --verbose dist/*
276
- #py -m pip install --upgrade ws-bom-robot-app
277
- ```
@@ -1,60 +0,0 @@
1
- ws_bom_robot_app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- ws_bom_robot_app/auth.py,sha256=84nIbmJsMrNs0sxIQGEHbjsjc2P6ZrZZGSn8dkiL6is,895
3
- ws_bom_robot_app/config.py,sha256=6Rz6-KGYMloekkLL9DUsyPAbdtN5iSTiPzRCuhymJFI,3872
4
- ws_bom_robot_app/cron_manager.py,sha256=0Yt5AMTPGlXZ_M5ck0SKMX8wvzoPsseEezg_s0Q3HKY,9224
5
- ws_bom_robot_app/main.py,sha256=zO3B-v-v9ESASvw8IaQj9Y9hNvNmOxohFmA0R82EybQ,6518
6
- ws_bom_robot_app/task_manager.py,sha256=Zedzs2R3O-wNSQOqs4jorgFwPRi-ji_0TN4mGfk-VvE,15958
7
- ws_bom_robot_app/util.py,sha256=b49ItlZgh2Wzw-6K8k5Wa44eVgjQ0JmWQwJnEaQBVGw,3502
8
- ws_bom_robot_app/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
- ws_bom_robot_app/llm/agent_description.py,sha256=XLrDcUk-4OtBFPv1Yscxga3ETHNnYCIC1uxHtWD94B8,4663
10
- ws_bom_robot_app/llm/agent_handler.py,sha256=4zdpSf5iVLxMZ90c_vUl_k-O9SF6u_h7GOB24y4mhIo,6435
11
- ws_bom_robot_app/llm/agent_lcel.py,sha256=BUfGVUcw6s_YAu5aPMkqqjsStYNHUXKh31t_Ybx11-A,2395
12
- ws_bom_robot_app/llm/api.py,sha256=UaD1oJyAOe7ASoXxPNJcth3kDuWcjk1xqUNEjuPWbR4,3759
13
- ws_bom_robot_app/llm/defaut_prompt.py,sha256=LlCd_nSMkMmHESfiiiQYfnJyB6Pp-LSs4CEKdYW4vFk,1106
14
- ws_bom_robot_app/llm/main.py,sha256=fVXyS9TOu22ZC7M8o2mRCya9vTmMFf5jRgs9V0K_4cw,4189
15
- ws_bom_robot_app/llm/settings.py,sha256=EkFGCppORenStH9W4e6_dYvQ-5p6xiEMpmUHBqNqG9M,117
16
- ws_bom_robot_app/llm/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
- ws_bom_robot_app/llm/models/api.py,sha256=mLbPG7jHh1EjgQG-xpBhEgiTIHpK35HZ51obgqQSfq4,8890
18
- ws_bom_robot_app/llm/models/base.py,sha256=1TqxuTK3rjJEALn7lvgoen_1ba3R2brAgGx6EDTtDZo,152
19
- ws_bom_robot_app/llm/models/kb.py,sha256=oVSw6_dmNxikAHrPqcfxDXz9M0ezLIYuxpgvzfs_Now,9514
20
- ws_bom_robot_app/llm/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- ws_bom_robot_app/llm/providers/llm_manager.py,sha256=GUi5aHQX_4A4pRgv-XEBH42wGPBYW2HUeQeiU_j044E,7924
22
- ws_bom_robot_app/llm/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
- ws_bom_robot_app/llm/tools/tool_builder.py,sha256=OaA0jReNUpjfe7c8TVLM86acQ4w0cQaR3NE22hGKJb0,1165
24
- ws_bom_robot_app/llm/tools/tool_manager.py,sha256=RZcJVPyWT9D3HUxSO1d5kSfTQtJB2CG5hocuFa01AzY,5816
25
- ws_bom_robot_app/llm/tools/utils.py,sha256=SPC8pj2bt_xWO7wNR_5YBwUUvjJIK1xlavR4yfW4J-0,1320
26
- ws_bom_robot_app/llm/tools/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
- ws_bom_robot_app/llm/tools/models/main.py,sha256=o3Rwbn5nsugKOgLG0FUIuvtPPHYhfVpqG4E3BQB2nWM,388
28
- ws_bom_robot_app/llm/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
- ws_bom_robot_app/llm/utils/agent_utils.py,sha256=9fdnVMHpSEBdmYef6NFXtMIXa8EB4QQICfXsXDiafHg,923
30
- ws_bom_robot_app/llm/utils/chunker.py,sha256=N7570xBYlObneg-fsvDhPAJ-Pv8C8OaYZOBK6q7LmMI,607
31
- ws_bom_robot_app/llm/utils/download.py,sha256=iAUxH_NiCpTPtGzhC4hBtxotd2HPFt2MBhttslIxqiI,3194
32
- ws_bom_robot_app/llm/utils/kb.py,sha256=jja45WCbNI7SGEgqDS99nErlwB5eY8Ga7BMnhdMHZ90,1279
33
- ws_bom_robot_app/llm/utils/print.py,sha256=ZonoLPcfM6Cpw4_Ec455LiCovExOwvnIgvw1QORSCBY,799
34
- ws_bom_robot_app/llm/utils/secrets.py,sha256=-HtqLIDVIJrpvGC5YhPAVyLsq8P4ChVM5g3GOfdwqVk,878
35
- ws_bom_robot_app/llm/utils/webhooks.py,sha256=LAAZqyN6VhV13wu4X-X85TwdDgAV2rNvIwQFIIc0FJM,2114
36
- ws_bom_robot_app/llm/vector_store/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
- ws_bom_robot_app/llm/vector_store/generator.py,sha256=9_xdtCKJhmt1OP0GXDjvFERXMP7ozLZT92KuYEBDgC0,6314
38
- ws_bom_robot_app/llm/vector_store/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
- ws_bom_robot_app/llm/vector_store/integration/azure.py,sha256=R37TaPQP-HJJJiaKE9rmMc9kpeXeRvdebbTY_982om0,3392
40
- ws_bom_robot_app/llm/vector_store/integration/base.py,sha256=8r6XO_XM8PcDXhsKst6q_Xw-P48rCiEtowmkBEDVd08,1957
41
- ws_bom_robot_app/llm/vector_store/integration/confluence.py,sha256=4fiRHB3J-SHZZxNGHwVkCrT-xSPbc91z4WrDE9fy6xU,2505
42
- ws_bom_robot_app/llm/vector_store/integration/dropbox.py,sha256=yhGvHTN0TEpUfhdvvV7RX5MxBwTUyddAX95Fgqp3mCg,2629
43
- ws_bom_robot_app/llm/vector_store/integration/gcs.py,sha256=fFDVDUR6eNB7FVTzDSEpMHFEWMgG16GLnpSf_mqGDdE,3184
44
- ws_bom_robot_app/llm/vector_store/integration/github.py,sha256=18PO30AZcgTn6PHhid3MwImVAdmKBNkr0kmAPgOetGw,2663
45
- ws_bom_robot_app/llm/vector_store/integration/googledrive.py,sha256=R6hr8iEgrR3QMOzIj5jY6w1x8pZ1LGdh4xM_q7g_ttc,3738
46
- ws_bom_robot_app/llm/vector_store/integration/jira.py,sha256=uiNkCOSqxOgm3AoO6k5TN_bsYXiO60I_wF0i_z8Yp8Y,4874
47
- ws_bom_robot_app/llm/vector_store/integration/manager.py,sha256=5Fl3XML6f1wmgraigpUwIFIXh7QFPX0RI0YFgFxBAvg,1700
48
- ws_bom_robot_app/llm/vector_store/integration/s3.py,sha256=3kh-VmH84IW7DdSLvOk6td1VBJ9aohlVJsk5F3cYj0U,3320
49
- ws_bom_robot_app/llm/vector_store/integration/sftp.py,sha256=WNzjjS1EUykgFB-8e7QkecSa1r1jTJqKyGzR25uJCtM,2848
50
- ws_bom_robot_app/llm/vector_store/integration/sharepoint.py,sha256=zqqn-6qPrK50Phch4nZHJTgaPyPkGe7W2InGL_Ru6vE,5376
51
- ws_bom_robot_app/llm/vector_store/integration/sitemap.py,sha256=4WYj3C6Y_4vkGs5iUNR59l1YOZEDsQT8MnZ5rIYDL_k,4733
52
- ws_bom_robot_app/llm/vector_store/integration/slack.py,sha256=FMjESXm2QetFXI6i8epze7Kbbu22fV8CVaxb71AHnJ8,2572
53
- ws_bom_robot_app/llm/vector_store/loader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
- ws_bom_robot_app/llm/vector_store/loader/base.py,sha256=L_ugekNuAq0N9O-24wtlHSNHkqSeD-KsJrfGt_FX9Oc,5340
55
- ws_bom_robot_app/llm/vector_store/loader/docling.py,sha256=yP0zgXLeFAlByaYuj-6cYariuknckrFds0dxdRcnVz8,3456
56
- ws_bom_robot_app/llm/vector_store/loader/json_loader.py,sha256=qo9ejRZyKv_k6jnGgXnu1W5uqsMMtgqK_uvPpZQ0p74,833
57
- ws_bom_robot_app-0.0.37.dist-info/METADATA,sha256=UHDhg12pT_4h3GtmCUUzI6zj-Hjso0ATpLRHIC5iOJ4,8348
58
- ws_bom_robot_app-0.0.37.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
59
- ws_bom_robot_app-0.0.37.dist-info/top_level.txt,sha256=Yl0akyHVbynsBX_N7wx3H3ZTkcMLjYyLJs5zBMDAKcM,17
60
- ws_bom_robot_app-0.0.37.dist-info/RECORD,,