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.
- ws_bom_robot_app/config.py +2 -3
- ws_bom_robot_app/cron_manager.py +2 -2
- ws_bom_robot_app/llm/agent_description.py +123 -123
- ws_bom_robot_app/llm/agent_handler.py +177 -177
- ws_bom_robot_app/llm/agent_lcel.py +45 -46
- ws_bom_robot_app/llm/api.py +12 -0
- ws_bom_robot_app/llm/defaut_prompt.py +15 -15
- ws_bom_robot_app/llm/feedbacks/feedback_manager.py +66 -74
- ws_bom_robot_app/llm/main.py +134 -134
- ws_bom_robot_app/llm/models/api.py +6 -0
- ws_bom_robot_app/llm/models/feedback.py +30 -30
- ws_bom_robot_app/llm/nebuly_handler.py +182 -173
- ws_bom_robot_app/llm/settings.py +4 -4
- ws_bom_robot_app/llm/tools/models/main.py +4 -0
- ws_bom_robot_app/llm/tools/tool_builder.py +65 -23
- ws_bom_robot_app/llm/tools/tool_manager.py +312 -228
- ws_bom_robot_app/llm/tools/utils.py +41 -41
- ws_bom_robot_app/llm/utils/agent.py +34 -34
- ws_bom_robot_app/llm/utils/cms.py +77 -0
- ws_bom_robot_app/llm/utils/download.py +79 -79
- ws_bom_robot_app/llm/utils/print.py +29 -29
- ws_bom_robot_app/llm/vector_store/generator.py +137 -137
- ws_bom_robot_app/llm/vector_store/loader/json_loader.py +25 -25
- ws_bom_robot_app/task_manager.py +3 -1
- ws_bom_robot_app/util.py +59 -20
- {ws_bom_robot_app-0.0.60.dist-info → ws_bom_robot_app-0.0.62.dist-info}/METADATA +17 -17
- {ws_bom_robot_app-0.0.60.dist-info → ws_bom_robot_app-0.0.62.dist-info}/RECORD +29 -28
- {ws_bom_robot_app-0.0.60.dist-info → ws_bom_robot_app-0.0.62.dist-info}/WHEEL +0 -0
- {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
|
+
]
|
ws_bom_robot_app/task_manager.py
CHANGED
|
@@ -350,13 +350,15 @@ class DatabaseTaskManagerStrategy(TaskManagerStrategy):
|
|
|
350
350
|
session.commit()
|
|
351
351
|
#endregion
|
|
352
352
|
|
|
353
|
-
# global
|
|
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
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
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.
|
|
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.
|
|
17
|
-
Requires-Dist: pydantic-settings==2.
|
|
18
|
-
Requires-Dist: fastapi[standard]==0.115.
|
|
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:
|
|
21
|
-
Requires-Dist: langchain==0.3.
|
|
22
|
-
Requires-Dist: langchain-
|
|
23
|
-
Requires-Dist: langchain-
|
|
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.
|
|
28
|
-
Requires-Dist: langchain-groq==0.3.
|
|
29
|
-
Requires-Dist: langchain-ollama==0.3.
|
|
30
|
-
Requires-Dist: faiss-cpu==1.
|
|
31
|
-
Requires-Dist: chromadb==0.
|
|
32
|
-
Requires-Dist: langchain_chroma==0.2.
|
|
33
|
-
Requires-Dist: fastembed==0.
|
|
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==
|
|
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=
|
|
4
|
-
ws_bom_robot_app/cron_manager.py,sha256=
|
|
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=
|
|
7
|
-
ws_bom_robot_app/util.py,sha256=
|
|
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=
|
|
11
|
-
ws_bom_robot_app/llm/agent_handler.py,sha256=
|
|
12
|
-
ws_bom_robot_app/llm/agent_lcel.py,sha256=
|
|
13
|
-
ws_bom_robot_app/llm/api.py,sha256=
|
|
14
|
-
ws_bom_robot_app/llm/defaut_prompt.py,sha256=
|
|
15
|
-
ws_bom_robot_app/llm/main.py,sha256
|
|
16
|
-
ws_bom_robot_app/llm/nebuly_handler.py,sha256=
|
|
17
|
-
ws_bom_robot_app/llm/settings.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
29
|
-
ws_bom_robot_app/llm/tools/tool_manager.py,sha256=
|
|
30
|
-
ws_bom_robot_app/llm/tools/utils.py,sha256=
|
|
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=
|
|
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=
|
|
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/
|
|
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=
|
|
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=
|
|
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=
|
|
68
|
-
ws_bom_robot_app-0.0.
|
|
69
|
-
ws_bom_robot_app-0.0.
|
|
70
|
-
ws_bom_robot_app-0.0.
|
|
71
|
-
ws_bom_robot_app-0.0.
|
|
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,,
|
|
File without changes
|
|
File without changes
|