beswarm 0.2.45__py3-none-any.whl → 0.2.46__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.
Potentially problematic release.
This version of beswarm might be problematic. Click here for more details.
- beswarm/knowledge_graph.py +1 -1
- {beswarm-0.2.45.dist-info → beswarm-0.2.46.dist-info}/METADATA +1 -1
- {beswarm-0.2.45.dist-info → beswarm-0.2.46.dist-info}/RECORD +5 -5
- {beswarm-0.2.45.dist-info → beswarm-0.2.46.dist-info}/WHEEL +0 -0
- {beswarm-0.2.45.dist-info → beswarm-0.2.46.dist-info}/top_level.txt +0 -0
beswarm/knowledge_graph.py
CHANGED
|
@@ -68,7 +68,7 @@ class KnowledgeGraphManager:
|
|
|
68
68
|
if path is None or not path.strip() or path.strip() in ['.', '/']:
|
|
69
69
|
return "root"
|
|
70
70
|
|
|
71
|
-
segments = path.strip('/').split('/')
|
|
71
|
+
segments = [s for s in path.strip('/').split('/') if s and s != '.']
|
|
72
72
|
current_node_id = "root"
|
|
73
73
|
|
|
74
74
|
for segment in segments:
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
beswarm/__init__.py,sha256=HZjUOJtZR5QhMuDbq-wukQQn1VrBusNWai_ysGo-VVI,20
|
|
2
2
|
beswarm/broker.py,sha256=RtnQZVbhf25acUHahNBiaS5FGxcrj0rhBhkon9gFY_M,9873
|
|
3
3
|
beswarm/core.py,sha256=htssaaeIBZ_yOqvX9VtANoVWaZHt_7oWcxyDI1z0paQ,310
|
|
4
|
-
beswarm/knowledge_graph.py,sha256=
|
|
4
|
+
beswarm/knowledge_graph.py,sha256=Q2hhXL2RXnAM8vvxstYetch5wX7ghTM5S7FnORSxCG0,9205
|
|
5
5
|
beswarm/prompt.py,sha256=n0a1a6NThIxAYSkisg1sEKjvz2w0tozpKL4BIplaAkI,32286
|
|
6
6
|
beswarm/taskmanager.py,sha256=xczsnehCaOAI3SRE8wUxhzmt6i6G7ynndSWS_bAZn3k,12192
|
|
7
7
|
beswarm/utils.py,sha256=S9jEtht0hTZbjZ2Hk24p4Ip41R69BogOkYS6fgPKY2Y,8219
|
|
@@ -145,7 +145,7 @@ beswarm/tools/search_web.py,sha256=LhgXOSHL9fwxg5T2AAOV4TTJkcJVLogsfRJW2faPvDE,1
|
|
|
145
145
|
beswarm/tools/subtasks.py,sha256=zZmRCjDocbvrU8MvZvpDWpQCKNntDJ123ByBiS8pRko,9889
|
|
146
146
|
beswarm/tools/worker.py,sha256=-tcLGrdLPZYxc1z66iQIB1VH7RWcR-5CgVWuDIQJBCQ,2013
|
|
147
147
|
beswarm/tools/write_csv.py,sha256=-r5OghcvjCg00hY0YQbp6u31VIJLrgaqDIvczAFoqDE,1470
|
|
148
|
-
beswarm-0.2.
|
|
149
|
-
beswarm-0.2.
|
|
150
|
-
beswarm-0.2.
|
|
151
|
-
beswarm-0.2.
|
|
148
|
+
beswarm-0.2.46.dist-info/METADATA,sha256=xFDxpNffZqMEucZHFfh63mCH2YBq6UnKBz8gJF5kvtk,3878
|
|
149
|
+
beswarm-0.2.46.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
150
|
+
beswarm-0.2.46.dist-info/top_level.txt,sha256=pJw4O87wvt5882smuSO6DfByJz7FJ8SxxT8h9fHCmpo,8
|
|
151
|
+
beswarm-0.2.46.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|