pycoze 0.1.193__tar.gz → 0.1.195__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {pycoze-0.1.193 → pycoze-0.1.195}/PKG-INFO +1 -1
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/bot/agent_chat.py +5 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/reference/bot.py +4 -2
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/reference/tool.py +4 -2
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/reference/workflow.py +6 -4
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze.egg-info/PKG-INFO +1 -1
- {pycoze-0.1.193 → pycoze-0.1.195}/setup.py +1 -1
- {pycoze-0.1.193 → pycoze-0.1.195}/LICENSE +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/README.md +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/__init__.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/ai/__init__.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/ai/vram_reserve.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/automation/__init__.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/automation/browser/__init__.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/automation/browser/edge_driver_manager.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/bot/__init__.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/bot/agent/__init__.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/bot/agent/agent.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/bot/agent/agent_types/__init__.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/bot/agent/agent_types/const.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/bot/agent/agent_types/openai_func_call_agent.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/bot/agent/assistant.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/bot/agent/chat.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/bot/bot.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/reference/__init__.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/reference/lib.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/ui/__init__.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/ui/base.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/ui/color.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/ui/typ.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/ui/ui_def.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/utils/__init__.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/utils/arg.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/utils/env.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze/utils/text_or_file.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze.egg-info/SOURCES.txt +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze.egg-info/dependency_links.txt +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/pycoze.egg-info/top_level.txt +0 -0
- {pycoze-0.1.193 → pycoze-0.1.195}/setup.cfg +0 -0
@@ -26,6 +26,11 @@ def load_abilities(bot_setting_file: str):
|
|
26
26
|
abilities.append(bot)
|
27
27
|
for tool_id in role_setting["tools"]:
|
28
28
|
abilities.extend(ref_tools(tool_id, as_agent_tool=True))
|
29
|
+
|
30
|
+
for workflow_id in role_setting["workflows"]:
|
31
|
+
workflow = ref_workflow(workflow_id, as_agent_tool=True)
|
32
|
+
if workflow:
|
33
|
+
abilities.append(workflow)
|
29
34
|
return abilities
|
30
35
|
|
31
36
|
|
@@ -12,9 +12,11 @@ bot_index = 0
|
|
12
12
|
|
13
13
|
params = utils.read_params_file()
|
14
14
|
|
15
|
-
def ref_bot(bot_id, as_agent_tool=False):
|
15
|
+
def ref_bot(bot_id, as_agent_tool=False, workspace_path=None):
|
16
16
|
global bot_index
|
17
|
-
|
17
|
+
if workspace_path is None:
|
18
|
+
workspace_path = params["workspacePath"]
|
19
|
+
tool_base_path = os.path.join(workspace_path, "User/Local/bot")
|
18
20
|
module_path = os.path.join(tool_base_path, bot_id)
|
19
21
|
module_path = os.path.normpath(os.path.abspath(module_path))
|
20
22
|
|
@@ -10,8 +10,10 @@ from pycoze import utils
|
|
10
10
|
|
11
11
|
params = utils.read_params_file()
|
12
12
|
|
13
|
-
def ref_tools(tool_id, as_agent_tool=False):
|
14
|
-
|
13
|
+
def ref_tools(tool_id, as_agent_tool=False, workspace_path=None):
|
14
|
+
if workspace_path is None:
|
15
|
+
workspace_path = params["workspacePath"]
|
16
|
+
tool_base_path = os.path.join(workspace_path, "User/Local/tool")
|
15
17
|
module_path = os.path.join(tool_base_path, tool_id)
|
16
18
|
module_path = os.path.normpath(os.path.abspath(module_path))
|
17
19
|
|
@@ -10,8 +10,10 @@ from pycoze import utils
|
|
10
10
|
|
11
11
|
params = utils.read_params_file()
|
12
12
|
|
13
|
-
def _ref_workflows(workflow_id, as_agent_tool=False):
|
14
|
-
|
13
|
+
def _ref_workflows(workflow_id, as_agent_tool=False, workspace_path=None):
|
14
|
+
if workspace_path is None:
|
15
|
+
workspace_path = params["workspacePath"]
|
16
|
+
tool_base_path = os.path.join(workspace_path, "User/Local/workflow")
|
15
17
|
module_path = os.path.join(tool_base_path, workflow_id)
|
16
18
|
module_path = os.path.normpath(os.path.abspath(module_path))
|
17
19
|
|
@@ -45,8 +47,8 @@ def _ref_workflows(workflow_id, as_agent_tool=False):
|
|
45
47
|
return export_tools if as_agent_tool else [tool.func for tool in export_tools]
|
46
48
|
|
47
49
|
|
48
|
-
def
|
49
|
-
tools = _ref_workflows(workflow_id, as_agent_tool=as_agent_tool)
|
50
|
+
def ref_workflow(workflow_id, as_agent_tool=False, workspace_path=None):
|
51
|
+
tools = _ref_workflows(workflow_id, as_agent_tool=as_agent_tool, workspace_path=workspace_path)
|
50
52
|
if len(tools) > 0:
|
51
53
|
return tools[0]
|
52
54
|
else:
|
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|