pycoze 0.1.192__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.192 → pycoze-0.1.194}/PKG-INFO +1 -1
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/reference/bot.py +4 -2
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/reference/tool.py +4 -2
- pycoze-0.1.194/pycoze/reference/workflow.py +56 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze.egg-info/PKG-INFO +1 -1
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze.egg-info/SOURCES.txt +1 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/setup.py +1 -1
- {pycoze-0.1.192 → pycoze-0.1.194}/LICENSE +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/README.md +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/__init__.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/ai/__init__.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/ai/vram_reserve.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/automation/__init__.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/automation/browser/__init__.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/automation/browser/edge_driver_manager.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/bot/__init__.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/bot/agent/__init__.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/bot/agent/agent.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/bot/agent/agent_types/__init__.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/bot/agent/agent_types/const.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/bot/agent/agent_types/openai_func_call_agent.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/bot/agent/assistant.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/bot/agent/chat.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/bot/agent_chat.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/bot/bot.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/reference/__init__.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/reference/lib.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/ui/__init__.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/ui/base.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/ui/color.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/ui/typ.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/ui/ui_def.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/utils/__init__.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/utils/arg.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/utils/env.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/utils/text_or_file.py +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze.egg-info/dependency_links.txt +0 -0
- {pycoze-0.1.192 → pycoze-0.1.194}/pycoze.egg-info/top_level.txt +0 -0
- {pycoze-0.1.192 → 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
|
|
@@ -0,0 +1,56 @@
|
|
1
|
+
import sys
|
2
|
+
import os
|
3
|
+
import importlib
|
4
|
+
from langchain.agents import tool as to_agent_tool
|
5
|
+
import types
|
6
|
+
import langchain_core
|
7
|
+
from .lib import ChangeDirectoryAndPath, ModuleManager, wrapped_func
|
8
|
+
from pycoze import utils
|
9
|
+
|
10
|
+
|
11
|
+
params = utils.read_params_file()
|
12
|
+
|
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")
|
17
|
+
module_path = os.path.join(tool_base_path, workflow_id)
|
18
|
+
module_path = os.path.normpath(os.path.abspath(module_path))
|
19
|
+
|
20
|
+
if not os.path.exists(module_path):
|
21
|
+
print(f"Workflow {workflow_id} not found")
|
22
|
+
return []
|
23
|
+
|
24
|
+
try:
|
25
|
+
with ModuleManager(module_path) as manager:
|
26
|
+
module = importlib.import_module("workflow")
|
27
|
+
export_tools = getattr(module, "export_tools")
|
28
|
+
valid_tools = []
|
29
|
+
for tool in export_tools:
|
30
|
+
assert isinstance(tool, langchain_core.tools.StructuredTool) or isinstance(
|
31
|
+
tool, types.FunctionType
|
32
|
+
), f"Tool is not a StructuredTool or function: {tool}"
|
33
|
+
if not isinstance(tool, langchain_core.tools.StructuredTool):
|
34
|
+
tool = to_agent_tool(tool)
|
35
|
+
valid_tools.append(tool)
|
36
|
+
export_tools = valid_tools
|
37
|
+
|
38
|
+
except Exception as e:
|
39
|
+
print(f"Error loading workflow {workflow_id}: {e}")
|
40
|
+
return []
|
41
|
+
|
42
|
+
for tool in export_tools:
|
43
|
+
tool.func = wrapped_func(tool, module_path)
|
44
|
+
if tool.description is None:
|
45
|
+
tool.description = "This tool is used to " + tool.name + "."
|
46
|
+
|
47
|
+
return export_tools if as_agent_tool else [tool.func for tool in export_tools]
|
48
|
+
|
49
|
+
|
50
|
+
def ref_workflows(workflow_id, as_agent_tool=False):
|
51
|
+
tools = _ref_workflows(workflow_id, as_agent_tool=as_agent_tool)
|
52
|
+
if len(tools) > 0:
|
53
|
+
return tools[0]
|
54
|
+
else:
|
55
|
+
return None
|
56
|
+
|
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
|