pycoze 0.1.146__py3-none-any.whl → 0.1.147__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.
- pycoze/bot/bot.py +2 -2
- pycoze/reference/bot.py +2 -2
- pycoze/reference/tool.py +2 -2
- {pycoze-0.1.146.dist-info → pycoze-0.1.147.dist-info}/METADATA +1 -1
- {pycoze-0.1.146.dist-info → pycoze-0.1.147.dist-info}/RECORD +8 -8
- {pycoze-0.1.146.dist-info → pycoze-0.1.147.dist-info}/LICENSE +0 -0
- {pycoze-0.1.146.dist-info → pycoze-0.1.147.dist-info}/WHEEL +0 -0
- {pycoze-0.1.146.dist-info → pycoze-0.1.147.dist-info}/top_level.txt +0 -0
pycoze/bot/bot.py
CHANGED
@@ -25,11 +25,11 @@ def load_abilities(bot_setting_file: str):
|
|
25
25
|
|
26
26
|
abilities = []
|
27
27
|
for bot_id in role_setting["bots"]:
|
28
|
-
bot = ref_bot(bot_id)
|
28
|
+
bot = ref_bot(bot_id, as_agent_tool=True)
|
29
29
|
if bot:
|
30
30
|
abilities.append(bot)
|
31
31
|
for tool_id in role_setting["tools"]:
|
32
|
-
abilities.extend(ref_tools(tool_id))
|
32
|
+
abilities.extend(ref_tools(tool_id, as_agent_tool=True))
|
33
33
|
return abilities
|
34
34
|
|
35
35
|
|
pycoze/reference/bot.py
CHANGED
@@ -9,7 +9,7 @@ import json
|
|
9
9
|
|
10
10
|
bot_index = 0
|
11
11
|
|
12
|
-
def ref_bot(bot_id):
|
12
|
+
def ref_bot(bot_id, as_agent_tool=False):
|
13
13
|
global bot_index
|
14
14
|
tool_base_path = "../../bot"
|
15
15
|
module_path = os.path.join(tool_base_path, bot_id)
|
@@ -53,7 +53,7 @@ def {random_name}(command:str) -> str:
|
|
53
53
|
tool.func = wrapped_func(tool, module_path)
|
54
54
|
if tool.description is None:
|
55
55
|
tool.description = "This tool is used to " + tool.name + "."
|
56
|
-
return tool
|
56
|
+
return tool if as_agent_tool else tool.func
|
57
57
|
except Exception as e:
|
58
58
|
print(f"Error loading bot {bot_id}: {e}")
|
59
59
|
return None
|
pycoze/reference/tool.py
CHANGED
@@ -7,7 +7,7 @@ import langchain_core
|
|
7
7
|
from .lib import ChangeDirectoryAndPath, ModuleManager, wrapped_func
|
8
8
|
|
9
9
|
|
10
|
-
def ref_tools(tool_id):
|
10
|
+
def ref_tools(tool_id, as_agent_tool=False):
|
11
11
|
tool_base_path = "../../tool"
|
12
12
|
module_path = os.path.join(tool_base_path, tool_id)
|
13
13
|
module_path = os.path.normpath(os.path.abspath(module_path))
|
@@ -39,4 +39,4 @@ def ref_tools(tool_id):
|
|
39
39
|
if tool.description is None:
|
40
40
|
tool.description = "This tool is used to " + tool.name + "."
|
41
41
|
|
42
|
-
return export_tools
|
42
|
+
return export_tools if as_agent_tool else [tool.func for tool in export_tools]
|
@@ -3,7 +3,7 @@ pycoze/module.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
pycoze/ai/__init__.py,sha256=odM2lgYSnApxw4AzLV_5AyaxL5_MLfydOSB1VmLGFyA,75
|
4
4
|
pycoze/ai/vram_reserve.py,sha256=QbqaA8qv87cnEpOVDMygi0BNMxuhLYwj1UKfR_D5BD4,4340
|
5
5
|
pycoze/bot/__init__.py,sha256=6HHMxDQVOyZM9dtSjQm9tjGnhj4h7CixD0JOvEwTi48,41
|
6
|
-
pycoze/bot/bot.py,sha256=
|
6
|
+
pycoze/bot/bot.py,sha256=QNFul9KZHMuTcTeWe2wbrh9l3tSdtP_o1_KwzD01EOo,3404
|
7
7
|
pycoze/bot/agent/__init__.py,sha256=YR9vpkEQn1e4937r_xFPJXUCPBEJ0SFzEQDBe2x3-YA,157
|
8
8
|
pycoze/bot/agent/agent.py,sha256=Aue8nWeW_I7e1jo4o7cUjFFjrsV9NtVUiTX3EQYHmbA,3507
|
9
9
|
pycoze/bot/agent/assistant.py,sha256=3iLxnRvf_ia0cP-FHK5Fv4ylltlnzPq1KscRCFYqjkc,1147
|
@@ -12,9 +12,9 @@ pycoze/bot/agent/agent_types/__init__.py,sha256=zmU2Kmrv5mCdfg-QlPn2H6pWxbGeq8s7
|
|
12
12
|
pycoze/bot/agent/agent_types/const.py,sha256=BfUKPrhAHREoMLHuFNG2bCIEkC1-f7K0LEqNg4RwiRE,70
|
13
13
|
pycoze/bot/agent/agent_types/openai_func_call_agent.py,sha256=SnEm5MODHn2uMsaMNqgzULM_91vqLHC0TU6ovwCOqLU,6675
|
14
14
|
pycoze/reference/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
15
|
-
pycoze/reference/bot.py,sha256=
|
15
|
+
pycoze/reference/bot.py,sha256=6w8LGBFxLygAMR4UUiItUF3AbClnoyDaSoyPK3V-mIg,2205
|
16
16
|
pycoze/reference/lib.py,sha256=sp3PqvsyE3OjSqgnykyaz_JARwelMGq44NQUU1x7IV4,2045
|
17
|
-
pycoze/reference/tool.py,sha256=
|
17
|
+
pycoze/reference/tool.py,sha256=W-XAa2ppIZET99kJcaU9mgYxsxJEKos9ZSUQA8hbqX0,1526
|
18
18
|
pycoze/ui/__init__.py,sha256=7xAfL2lfG7-jllPJEZUJO89xUE9sNzvo1y0WmBswjBI,458
|
19
19
|
pycoze/ui/base.py,sha256=SCXVDK7PpMaBv6ovvabHcfRq_d2AWM0BRyxpNhuJN5A,1285
|
20
20
|
pycoze/ui/color.py,sha256=cT9Ib8uNzkOKxyW0IwVj46o4LwdB1xgNCj1_Rou9d_4,854
|
@@ -23,8 +23,8 @@ pycoze/ui/ui_def.py,sha256=UhhU_yB3GV9ISbvTWT48hsHPHI250BhMILh6bu5Uioo,4206
|
|
23
23
|
pycoze/utils/__init__.py,sha256=ET0W5wzq4zlY3dr1wHVbbeRKlKdC_zqHt9b0jZyHohw,94
|
24
24
|
pycoze/utils/arg.py,sha256=orLVEGw3x2f3l7bZDbBPkkdDPSdqXo-_Rs-4ZhzmrEw,984
|
25
25
|
pycoze/utils/text_or_file.py,sha256=gpxZVWt2DW6YiEg_MnMuwg36VNf3TX383QD_1oZNB0Y,551
|
26
|
-
pycoze-0.1.
|
27
|
-
pycoze-0.1.
|
28
|
-
pycoze-0.1.
|
29
|
-
pycoze-0.1.
|
30
|
-
pycoze-0.1.
|
26
|
+
pycoze-0.1.147.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
|
27
|
+
pycoze-0.1.147.dist-info/METADATA,sha256=IoQ63XdXibCL2QFX-jMP2i9bzbCspKRHPIk6R-c05Ik,726
|
28
|
+
pycoze-0.1.147.dist-info/WHEEL,sha256=bFJAMchF8aTQGUgMZzHJyDDMPTO3ToJ7x23SLJa1SVo,92
|
29
|
+
pycoze-0.1.147.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
|
30
|
+
pycoze-0.1.147.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|