ws-bom-robot-app 0.0.60__py3-none-any.whl → 0.0.62__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 (29) hide show
  1. ws_bom_robot_app/config.py +2 -3
  2. ws_bom_robot_app/cron_manager.py +2 -2
  3. ws_bom_robot_app/llm/agent_description.py +123 -123
  4. ws_bom_robot_app/llm/agent_handler.py +177 -177
  5. ws_bom_robot_app/llm/agent_lcel.py +45 -46
  6. ws_bom_robot_app/llm/api.py +12 -0
  7. ws_bom_robot_app/llm/defaut_prompt.py +15 -15
  8. ws_bom_robot_app/llm/feedbacks/feedback_manager.py +66 -74
  9. ws_bom_robot_app/llm/main.py +134 -134
  10. ws_bom_robot_app/llm/models/api.py +6 -0
  11. ws_bom_robot_app/llm/models/feedback.py +30 -30
  12. ws_bom_robot_app/llm/nebuly_handler.py +182 -173
  13. ws_bom_robot_app/llm/settings.py +4 -4
  14. ws_bom_robot_app/llm/tools/models/main.py +4 -0
  15. ws_bom_robot_app/llm/tools/tool_builder.py +65 -23
  16. ws_bom_robot_app/llm/tools/tool_manager.py +312 -228
  17. ws_bom_robot_app/llm/tools/utils.py +41 -41
  18. ws_bom_robot_app/llm/utils/agent.py +34 -34
  19. ws_bom_robot_app/llm/utils/cms.py +77 -0
  20. ws_bom_robot_app/llm/utils/download.py +79 -79
  21. ws_bom_robot_app/llm/utils/print.py +29 -29
  22. ws_bom_robot_app/llm/vector_store/generator.py +137 -137
  23. ws_bom_robot_app/llm/vector_store/loader/json_loader.py +25 -25
  24. ws_bom_robot_app/task_manager.py +3 -1
  25. ws_bom_robot_app/util.py +59 -20
  26. {ws_bom_robot_app-0.0.60.dist-info → ws_bom_robot_app-0.0.62.dist-info}/METADATA +17 -17
  27. {ws_bom_robot_app-0.0.60.dist-info → ws_bom_robot_app-0.0.62.dist-info}/RECORD +29 -28
  28. {ws_bom_robot_app-0.0.60.dist-info → ws_bom_robot_app-0.0.62.dist-info}/WHEEL +0 -0
  29. {ws_bom_robot_app-0.0.60.dist-info → ws_bom_robot_app-0.0.62.dist-info}/top_level.txt +0 -0
@@ -1,25 +1,25 @@
1
- import json
2
- from typing import Optional
3
- from langchain_core.documents import Document
4
- from langchain_community.document_loaders.base import BaseLoader
5
-
6
- class JsonLoader(BaseLoader):
7
- def __init__(self, file_path: str, meta_fields:Optional[list[str]] = [],encoding: Optional[str] = "utf-8"):
8
- self.file_path = file_path
9
- self.meta_fields = meta_fields
10
- self.encoding = encoding
11
-
12
- def load(self) -> list[Document]:
13
- with open(self.file_path, "r", encoding=self.encoding) as file:
14
- data = json.load(file)
15
- _list = data if isinstance(data, list) else [data]
16
- return [
17
- Document(
18
- page_content=json.dumps(item),
19
- metadata={
20
- "source": self.file_path,
21
- **{field: item.get(field) for field in self.meta_fields if item.get(field)}
22
- }
23
- )
24
- for item in _list
25
- ]
1
+ import json
2
+ from typing import Optional
3
+ from langchain_core.documents import Document
4
+ from langchain_community.document_loaders.base import BaseLoader
5
+
6
+ class JsonLoader(BaseLoader):
7
+ def __init__(self, file_path: str, meta_fields:Optional[list[str]] = [],encoding: Optional[str] = "utf-8"):
8
+ self.file_path = file_path
9
+ self.meta_fields = meta_fields
10
+ self.encoding = encoding
11
+
12
+ def load(self) -> list[Document]:
13
+ with open(self.file_path, "r", encoding=self.encoding) as file:
14
+ data = json.load(file)
15
+ _list = data if isinstance(data, list) else [data]
16
+ return [
17
+ Document(
18
+ page_content=json.dumps(item),
19
+ metadata={
20
+ "source": self.file_path,
21
+ **{field: item.get(field) for field in self.meta_fields if item.get(field)}
22
+ }
23
+ )
24
+ for item in _list
25
+ ]
@@ -350,13 +350,15 @@ class DatabaseTaskManagerStrategy(TaskManagerStrategy):
350
350
  session.commit()
351
351
  #endregion
352
352
 
353
- # global instance
353
+ #region global
354
354
  def __get_taskmanager_strategy() -> TaskManagerStrategy:
355
+ """ Factory function to get the appropriate task manager strategy based on the runtime configuration."""
355
356
  if config.runtime_options().is_multi_process:
356
357
  return DatabaseTaskManagerStrategy()
357
358
  return MemoryTaskManagerStrategy()
358
359
  task_manager = __get_taskmanager_strategy()
359
360
  _log.info(f"Task manager strategy: {task_manager.__class__.__name__}")
361
+ #endregion
360
362
 
361
363
  #region api
362
364
  router = APIRouter(prefix="/api/task", tags=["task"])
ws_bom_robot_app/util.py CHANGED
@@ -1,6 +1,6 @@
1
1
  import logging.handlers
2
2
  import os, logging, json
3
- from typing import TypeVar, Generic
3
+ from typing import Callable, TypeVar, Generic
4
4
  from functools import wraps
5
5
  from .config import config
6
6
 
@@ -23,25 +23,64 @@ _log: logging.Logger = locals().get("_loc", logger_instance(__name__))
23
23
  #endregion
24
24
 
25
25
  #region cache
26
- class cache(Generic[T]):
27
- def _filepath() -> str:
28
- return os.path.join('.data',f'{T.__module__}.{T.__name__}.json')
29
- @staticmethod
30
- def get() -> list[T]:
31
- filepath: str = cache._filepath()
32
- if os.path.exists(filepath):
33
- with open(filepath, 'r') as file:
34
- content = file.read()
35
- items: list[T] = json.loads(content)
36
- return items
37
- return None
38
- @staticmethod
39
- def set(items: list[T]):
40
- with open(cache._filepath(), 'w') as file:
41
- file.write(json.dumps(items))
42
- @staticmethod
43
- def clear():
44
- os.remove(cache._filepath())
26
+ _cache = {}
27
+ _cache_timestamps = {}
28
+
29
+ def cache_with_ttl(ttl_seconds: int):
30
+ """
31
+ Decorator for caching async function results with TTL (Time To Live)
32
+
33
+ Args:
34
+ ttl_seconds: Cache expiration time in seconds
35
+ """
36
+ import time
37
+ def decorator(func: Callable) -> Callable:
38
+ @wraps(func)
39
+ async def wrapper(*args, **kwargs):
40
+ # Create cache key from function name and arguments
41
+ cache_key = f"{func.__name__}:{hash(str(args) + str(sorted(kwargs.items())))}"
42
+
43
+ current_time = time.time()
44
+
45
+ # Check if cached result exists and is still valid
46
+ if (cache_key in _cache and
47
+ cache_key in _cache_timestamps and
48
+ current_time - _cache_timestamps[cache_key] < ttl_seconds):
49
+ return _cache[cache_key]
50
+
51
+ # Call the original function and cache the result
52
+ result = await func(*args, **kwargs)
53
+ _cache[cache_key] = result
54
+ _cache_timestamps[cache_key] = current_time
55
+
56
+ return result
57
+ return wrapper
58
+ return decorator
59
+
60
+ def clear_cache(id: str = None):
61
+ """Clear the cache by id function"""
62
+ cache_key_prefix = f"{id}:"
63
+ keys_to_remove = [key for key in _cache.keys() if key.startswith(cache_key_prefix)]
64
+ for key in keys_to_remove:
65
+ _cache.pop(key, None)
66
+ _cache_timestamps.pop(key, None)
67
+
68
+ def get_cache_info(id: str) -> dict:
69
+ """Get information about current cache status"""
70
+ import time
71
+ current_time = time.time()
72
+ cache_info = {}
73
+
74
+ for key, timestamp in _cache_timestamps.items():
75
+ if key.startswith(f"{id}:"):
76
+ remaining_ttl = 600 - (current_time - timestamp)
77
+ cache_info[key] = {
78
+ "cached_at": timestamp,
79
+ "remaining_ttl": max(0, remaining_ttl),
80
+ "is_expired": remaining_ttl <= 0
81
+ }
82
+
83
+ return cache_info
45
84
  #endregion
46
85
 
47
86
  def _get_timer_wrapper(is_async=False):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ws_bom_robot_app
3
- Version: 0.0.60
3
+ Version: 0.0.62
4
4
  Summary: A FastAPI application serving ws bom/robot/llm platform ai.
5
5
  Home-page: https://github.com/websolutespa/bom
6
6
  Author: Websolute Spa
@@ -13,24 +13,23 @@ Description-Content-Type: text/markdown
13
13
  Requires-Dist: standardwebhooks==1.0.0
14
14
  Requires-Dist: apscheduler==3.11.0
15
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
16
+ Requires-Dist: pydantic==2.11.7
17
+ Requires-Dist: pydantic-settings==2.10.1
18
+ Requires-Dist: fastapi[standard]==0.115.14
19
19
  Requires-Dist: chevron==0.14.0
20
- Requires-Dist: trafilatura==2.0.0
21
- Requires-Dist: langchain==0.3.25
22
- Requires-Dist: langchain-community==0.3.24
23
- Requires-Dist: langchain-core==0.3.59
24
- Requires-Dist: langchain-openai==0.3.16
20
+ Requires-Dist: langchain==0.3.26
21
+ Requires-Dist: langchain-community==0.3.26
22
+ Requires-Dist: langchain-core==0.3.67
23
+ Requires-Dist: langchain-openai==0.3.27
25
24
  Requires-Dist: langchain-anthropic==0.3.6
26
25
  Requires-Dist: langchain-google-genai==2.0.7
27
- Requires-Dist: langchain-google-vertexai==2.0.13
28
- Requires-Dist: langchain-groq==0.3.2
29
- Requires-Dist: langchain-ollama==0.3.2
30
- Requires-Dist: faiss-cpu==1.9.0
31
- Requires-Dist: chromadb==0.6.3
32
- Requires-Dist: langchain_chroma==0.2.1
33
- Requires-Dist: fastembed==0.5.1
26
+ Requires-Dist: langchain-google-vertexai==2.0.27
27
+ Requires-Dist: langchain-groq==0.3.5
28
+ Requires-Dist: langchain-ollama==0.3.3
29
+ Requires-Dist: faiss-cpu==1.11.0
30
+ Requires-Dist: chromadb==1.0.13
31
+ Requires-Dist: langchain_chroma==0.2.4
32
+ Requires-Dist: fastembed==0.7.1
34
33
  Requires-Dist: langchain-qdrant==0.2.0
35
34
  Requires-Dist: lark==1.2.2
36
35
  Requires-Dist: unstructured==0.16.21
@@ -48,9 +47,10 @@ Requires-Dist: unstructured-ingest[sftp]
48
47
  Requires-Dist: unstructured-ingest[sharepoint]
49
48
  Requires-Dist: unstructured-ingest[slack]
50
49
  Requires-Dist: html5lib==1.1
51
- Requires-Dist: markdownify==0.14.1
50
+ Requires-Dist: markdownify==1.1.0
52
51
  Requires-Dist: duckduckgo-search==8.0.4
53
52
  Requires-Dist: langchain_google_community==2.0.7
53
+ Requires-Dist: trafilatura==2.0.0
54
54
  Dynamic: author
55
55
  Dynamic: author-email
56
56
  Dynamic: classifier
@@ -1,45 +1,46 @@
1
1
  ws_bom_robot_app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  ws_bom_robot_app/auth.py,sha256=84nIbmJsMrNs0sxIQGEHbjsjc2P6ZrZZGSn8dkiL6is,895
3
- ws_bom_robot_app/config.py,sha256=9W3cz92hbogDrtbCcybpCY29zCka7G225CNQEptpx30,4183
4
- ws_bom_robot_app/cron_manager.py,sha256=0Yt5AMTPGlXZ_M5ck0SKMX8wvzoPsseEezg_s0Q3HKY,9224
3
+ ws_bom_robot_app/config.py,sha256=JFO4HrFnzUjFfv5MH0Tzwda0krllEqmTufHZ6J-BgEI,4147
4
+ ws_bom_robot_app/cron_manager.py,sha256=pFHV7SZtp6GRmmLD9K1Mb1TE9Ev9n5mIiFScrc7tpCo,9221
5
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
6
+ ws_bom_robot_app/task_manager.py,sha256=Q3Il2TtkP0FoG9zHEBu48pZGXzimTtvWQsoH6wdvQs0,16077
7
+ ws_bom_robot_app/util.py,sha256=RjVD6B9sHje788Lndqq5DHy6TJM0KLs9qx3JYt81Wyk,4834
8
8
  ws_bom_robot_app/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  ws_bom_robot_app/llm/agent_context.py,sha256=uatHJ8wcRly6h0S762BgfzDMpmcwCHwNzwo37aWjeE0,1305
10
- ws_bom_robot_app/llm/agent_description.py,sha256=5IP0qFSJvaE3zjGS7f0W1DuiegP0RHXRMBoDC5pCofA,4779
11
- ws_bom_robot_app/llm/agent_handler.py,sha256=4HYP8wbdtJhRi3bk6PvJ3cRDZyLYWt3Ow5tnHpkEg1o,7738
12
- ws_bom_robot_app/llm/agent_lcel.py,sha256=8d10b43BXqE4rfXE5uh8YGT67o1bw0q0l7QXFT6wPKA,2320
13
- ws_bom_robot_app/llm/api.py,sha256=1nzQ7g2n_DlX6Ixo5ecS10UvyyKJ42qZQ6aD8-EI7BE,4709
14
- ws_bom_robot_app/llm/defaut_prompt.py,sha256=D9dn8yPveu0bVwGM1wQWLYftmBs5O76o0R_caLLll8w,1121
15
- ws_bom_robot_app/llm/main.py,sha256=UK33yI_0zDCdM5zKe9h7c_qzM41PIANvRFCxjGlAzlI,5140
16
- ws_bom_robot_app/llm/nebuly_handler.py,sha256=1HaBeBNzEhyTsgz9v-15Tt7oAc6UBGtqB_DBujpFIcw,7534
17
- ws_bom_robot_app/llm/settings.py,sha256=DCLaGZwxlw0xE46LpfUgin_FHD8_XJIthCgI6r2UDlM,121
10
+ ws_bom_robot_app/llm/agent_description.py,sha256=yK4aVU3RNk1oP4bEneV3QPAi-208JwWk4R6qHlzqYIg,4656
11
+ ws_bom_robot_app/llm/agent_handler.py,sha256=BQ-f--Z5QCJDp-7tzSG_CKrANUCqG65S09psgWVNxa4,7597
12
+ ws_bom_robot_app/llm/agent_lcel.py,sha256=GGZcGBKsSBbZQ-_MPI3NUMvT7lTerYgwKs3o74stwSU,2252
13
+ ws_bom_robot_app/llm/api.py,sha256=2bF-UFczY9LuBqPxKObM0TOWYbZgVztX1RiIz5MSorU,5042
14
+ ws_bom_robot_app/llm/defaut_prompt.py,sha256=LlCd_nSMkMmHESfiiiQYfnJyB6Pp-LSs4CEKdYW4vFk,1106
15
+ ws_bom_robot_app/llm/main.py,sha256=-7HVVpVa_SIDrZS1zS92moQJ0SOSaBrMIPKOdhQ1jEQ,5006
16
+ ws_bom_robot_app/llm/nebuly_handler.py,sha256=WDKDx7ItBv39dhAkYtRciA11YWUwZ7HjEOI2cgr-5NI,7851
17
+ ws_bom_robot_app/llm/settings.py,sha256=EkFGCppORenStH9W4e6_dYvQ-5p6xiEMpmUHBqNqG9M,117
18
18
  ws_bom_robot_app/llm/feedbacks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
- ws_bom_robot_app/llm/feedbacks/feedback_manager.py,sha256=bnP0FEJTyrzT0YzqCVE73EC07Eu_4FLxVu3Cy-5Si0o,3211
19
+ ws_bom_robot_app/llm/feedbacks/feedback_manager.py,sha256=WcKgzlOb8VFG7yqHoIOO_R6LAzdzE4YIRFCVOGBSgfM,2856
20
20
  ws_bom_robot_app/llm/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- ws_bom_robot_app/llm/models/api.py,sha256=266f5jc1ikfX9HnK5Ms4NxXowNRfxFEH8GPlQcDvN5Y,10709
21
+ ws_bom_robot_app/llm/models/api.py,sha256=9GK35esx-jl4EIkpSGbiAOyYPbdhtB59txwoyAgdwnk,10939
22
22
  ws_bom_robot_app/llm/models/base.py,sha256=1TqxuTK3rjJEALn7lvgoen_1ba3R2brAgGx6EDTtDZo,152
23
- ws_bom_robot_app/llm/models/feedback.py,sha256=pYNQGxNOBgeAAfdJLI95l7ePLBI5tVdsgnyjp5oMOQU,1722
23
+ ws_bom_robot_app/llm/models/feedback.py,sha256=zh1jLqPRLzNlxInkCMoiJbfSu0-tiOEYHM7FhC46PkM,1692
24
24
  ws_bom_robot_app/llm/models/kb.py,sha256=oVSw6_dmNxikAHrPqcfxDXz9M0ezLIYuxpgvzfs_Now,9514
25
25
  ws_bom_robot_app/llm/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
26
  ws_bom_robot_app/llm/providers/llm_manager.py,sha256=zIkxgTLYQCcup2Ixf4eWap4mNinuJH2YmkjLjZGDyJM,8371
27
27
  ws_bom_robot_app/llm/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
- ws_bom_robot_app/llm/tools/tool_builder.py,sha256=p_Q32_-OSydcxzj69PgPIuiny816zYv5dVsCHSY0ELc,1188
29
- ws_bom_robot_app/llm/tools/tool_manager.py,sha256=J8WQnjXpLe3Sv6thUi_kgXIDBmt1Z4C-ASzs4RHsVNg,10253
30
- ws_bom_robot_app/llm/tools/utils.py,sha256=Ba7ScFZPVJ3ke8KLO8ik1wyR2f_zC99Bikqx0OGnKoI,1924
28
+ ws_bom_robot_app/llm/tools/tool_builder.py,sha256=p5CeLCuAilhtEAbPaiAWKGtuIWl8vfilZjYJ9Kw1dLg,3200
29
+ ws_bom_robot_app/llm/tools/tool_manager.py,sha256=6P8YinxI3RYcwkyFTqZkX9C3Lu43Kl0-o6pwQRj3pPo,13719
30
+ ws_bom_robot_app/llm/tools/utils.py,sha256=tdmOAk8l4HVzw67z3brA9yX-1WLu91paU-WmXHyz4Bg,1883
31
31
  ws_bom_robot_app/llm/tools/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
- ws_bom_robot_app/llm/tools/models/main.py,sha256=pBQNWPd1OZgZ2xkOnUOawNbujQ5oJXLdyuAex1afLWc,579
32
+ ws_bom_robot_app/llm/tools/models/main.py,sha256=1hICqHs-KS2heenkH7b2eH0N2GrPaaNGBrn64cl_A40,827
33
33
  ws_bom_robot_app/llm/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
- ws_bom_robot_app/llm/utils/agent.py,sha256=ISF9faaD5tBi-8sbgQpgfqWT1JIVcgv_lRhyaNAkI2Q,1445
34
+ ws_bom_robot_app/llm/utils/agent.py,sha256=_CY5Dji3UeAIi2iuU7ttz4fml1q8aCFgVWOv970x8Fw,1411
35
35
  ws_bom_robot_app/llm/utils/chunker.py,sha256=N7570xBYlObneg-fsvDhPAJ-Pv8C8OaYZOBK6q7LmMI,607
36
- ws_bom_robot_app/llm/utils/download.py,sha256=GaRypPgkx16HfYRj-upX9kvmjfAdFFb5TP4P97scWeA,3273
36
+ ws_bom_robot_app/llm/utils/cms.py,sha256=Cg5jVi0Peg3PNKOkWIx3SIISv8vf2zn0FP9JJumyeJE,3384
37
+ ws_bom_robot_app/llm/utils/download.py,sha256=iAUxH_NiCpTPtGzhC4hBtxotd2HPFt2MBhttslIxqiI,3194
37
38
  ws_bom_robot_app/llm/utils/kb.py,sha256=jja45WCbNI7SGEgqDS99nErlwB5eY8Ga7BMnhdMHZ90,1279
38
- ws_bom_robot_app/llm/utils/print.py,sha256=HK3zhZOd4cEyXZ8QcudLtTIfqqtMOERce_yTofS8NXo,803
39
+ ws_bom_robot_app/llm/utils/print.py,sha256=IsPYEWRJqu-dqlJA3F9OnnIS4rOq_EYX1Ljp3BvDnww,774
39
40
  ws_bom_robot_app/llm/utils/secrets.py,sha256=-HtqLIDVIJrpvGC5YhPAVyLsq8P4ChVM5g3GOfdwqVk,878
40
41
  ws_bom_robot_app/llm/utils/webhooks.py,sha256=LAAZqyN6VhV13wu4X-X85TwdDgAV2rNvIwQFIIc0FJM,2114
41
42
  ws_bom_robot_app/llm/vector_store/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
- ws_bom_robot_app/llm/vector_store/generator.py,sha256=W_hi_UOPaSjnEuazhUFIrMAwTvz64Du8_gpiVAxFlVc,6451
43
+ ws_bom_robot_app/llm/vector_store/generator.py,sha256=9_xdtCKJhmt1OP0GXDjvFERXMP7ozLZT92KuYEBDgC0,6314
43
44
  ws_bom_robot_app/llm/vector_store/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
45
  ws_bom_robot_app/llm/vector_store/db/base.py,sha256=rNIYHPDXhVyoP9AJKRbGT5Vh5HzcKYx8MUIhEuCVGW4,6491
45
46
  ws_bom_robot_app/llm/vector_store/db/chroma.py,sha256=3UXR7PZidFxgI5jlC0WWPAJ0NGRI2AqSBVlL9VZOJgw,3356
@@ -64,8 +65,8 @@ ws_bom_robot_app/llm/vector_store/integration/slack.py,sha256=FMjESXm2QetFXI6i8e
64
65
  ws_bom_robot_app/llm/vector_store/loader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
66
  ws_bom_robot_app/llm/vector_store/loader/base.py,sha256=L_ugekNuAq0N9O-24wtlHSNHkqSeD-KsJrfGt_FX9Oc,5340
66
67
  ws_bom_robot_app/llm/vector_store/loader/docling.py,sha256=yP0zgXLeFAlByaYuj-6cYariuknckrFds0dxdRcnVz8,3456
67
- ws_bom_robot_app/llm/vector_store/loader/json_loader.py,sha256=LDppW0ZATo4_1hh-KlsAM3TLawBvwBxva_a7k5Oz1sc,858
68
- ws_bom_robot_app-0.0.60.dist-info/METADATA,sha256=qOMWEMQar7dYSZllRX9OOj_F198nzb4Xmd6Ur3MR1FE,8456
69
- ws_bom_robot_app-0.0.60.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
70
- ws_bom_robot_app-0.0.60.dist-info/top_level.txt,sha256=Yl0akyHVbynsBX_N7wx3H3ZTkcMLjYyLJs5zBMDAKcM,17
71
- ws_bom_robot_app-0.0.60.dist-info/RECORD,,
68
+ ws_bom_robot_app/llm/vector_store/loader/json_loader.py,sha256=qo9ejRZyKv_k6jnGgXnu1W5uqsMMtgqK_uvPpZQ0p74,833
69
+ ws_bom_robot_app-0.0.62.dist-info/METADATA,sha256=b1mmWDRfVWVw1PbJmb75XL68KuGe6VnA5Yv-reMGB-4,8459
70
+ ws_bom_robot_app-0.0.62.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
71
+ ws_bom_robot_app-0.0.62.dist-info/top_level.txt,sha256=Yl0akyHVbynsBX_N7wx3H3ZTkcMLjYyLJs5zBMDAKcM,17
72
+ ws_bom_robot_app-0.0.62.dist-info/RECORD,,