pycoze 0.1.193__tar.gz → 0.1.194__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.194}/PKG-INFO +1 -1
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/reference/bot.py +4 -2
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/reference/tool.py +4 -2
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/reference/workflow.py +4 -2
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze.egg-info/PKG-INFO +1 -1
- {pycoze-0.1.193 → pycoze-0.1.194}/setup.py +1 -1
- {pycoze-0.1.193 → pycoze-0.1.194}/LICENSE +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/README.md +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/__init__.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/ai/__init__.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/ai/vram_reserve.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/automation/__init__.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/automation/browser/__init__.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/automation/browser/edge_driver_manager.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/bot/__init__.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/bot/agent/__init__.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/bot/agent/agent.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/bot/agent/agent_types/__init__.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/bot/agent/agent_types/const.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/bot/agent/agent_types/openai_func_call_agent.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/bot/agent/assistant.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/bot/agent/chat.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/bot/agent_chat.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/bot/bot.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/reference/__init__.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/reference/lib.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/ui/__init__.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/ui/base.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/ui/color.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/ui/typ.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/ui/ui_def.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/utils/__init__.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/utils/arg.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/utils/env.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze/utils/text_or_file.py +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze.egg-info/SOURCES.txt +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze.egg-info/dependency_links.txt +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/pycoze.egg-info/top_level.txt +0 -0
- {pycoze-0.1.193 → pycoze-0.1.194}/setup.cfg +0 -0
@@ -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
|
|
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
|
File without changes
|