pycoze 0.1.146__tar.gz → 0.1.148__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {pycoze-0.1.146 → pycoze-0.1.148}/PKG-INFO +1 -1
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/bot/bot.py +2 -2
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/reference/bot.py +2 -2
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/reference/lib.py +2 -1
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/reference/tool.py +2 -2
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze.egg-info/PKG-INFO +1 -1
- {pycoze-0.1.146 → pycoze-0.1.148}/setup.py +1 -1
- {pycoze-0.1.146 → pycoze-0.1.148}/LICENSE +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/README.md +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/__init__.py +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/ai/__init__.py +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/ai/vram_reserve.py +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/bot/__init__.py +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/bot/agent/__init__.py +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/bot/agent/agent.py +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/bot/agent/agent_types/__init__.py +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/bot/agent/agent_types/const.py +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/bot/agent/agent_types/openai_func_call_agent.py +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/bot/agent/assistant.py +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/bot/agent/chat.py +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/module.py +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/reference/__init__.py +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/ui/__init__.py +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/ui/base.py +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/ui/color.py +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/ui/typ.py +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/ui/ui_def.py +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/utils/__init__.py +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/utils/arg.py +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze/utils/text_or_file.py +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze.egg-info/SOURCES.txt +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze.egg-info/dependency_links.txt +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/pycoze.egg-info/top_level.txt +0 -0
- {pycoze-0.1.146 → pycoze-0.1.148}/setup.cfg +0 -0
@@ -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
|
|
@@ -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
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import os
|
2
2
|
import sys
|
3
3
|
import importlib
|
4
|
+
import types
|
4
5
|
|
5
6
|
|
6
7
|
class ChangeDirectoryAndPath:
|
@@ -58,7 +59,7 @@ def wrapped_func(item, module_path):
|
|
58
59
|
with ChangeDirectoryAndPath(module_path):
|
59
60
|
result = original_tool_function(*args, **kwargs)
|
60
61
|
try:
|
61
|
-
print(f"{item.name}
|
62
|
+
print(f"{item.name} 调用完毕,结果:", result, type result, isinstance(result, types.GeneratorType))
|
62
63
|
except:
|
63
64
|
pass
|
64
65
|
return result
|
@@ -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]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|