pycoze 0.1.191__py3-none-any.whl → 0.1.193__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/reference/bot.py +1 -1
- pycoze/reference/tool.py +1 -1
- pycoze/reference/workflow.py +54 -0
- {pycoze-0.1.191.dist-info → pycoze-0.1.193.dist-info}/METADATA +1 -1
- {pycoze-0.1.191.dist-info → pycoze-0.1.193.dist-info}/RECORD +8 -7
- {pycoze-0.1.191.dist-info → pycoze-0.1.193.dist-info}/LICENSE +0 -0
- {pycoze-0.1.191.dist-info → pycoze-0.1.193.dist-info}/WHEEL +0 -0
- {pycoze-0.1.191.dist-info → pycoze-0.1.193.dist-info}/top_level.txt +0 -0
pycoze/reference/bot.py
CHANGED
@@ -14,7 +14,7 @@ params = utils.read_params_file()
|
|
14
14
|
|
15
15
|
def ref_bot(bot_id, as_agent_tool=False):
|
16
16
|
global bot_index
|
17
|
-
tool_base_path = os.path.join(params["workspacePath"], "bot")
|
17
|
+
tool_base_path = os.path.join(params["workspacePath"], "User/Local/bot")
|
18
18
|
module_path = os.path.join(tool_base_path, bot_id)
|
19
19
|
module_path = os.path.normpath(os.path.abspath(module_path))
|
20
20
|
|
pycoze/reference/tool.py
CHANGED
@@ -11,7 +11,7 @@ from pycoze import utils
|
|
11
11
|
params = utils.read_params_file()
|
12
12
|
|
13
13
|
def ref_tools(tool_id, as_agent_tool=False):
|
14
|
-
tool_base_path = os.path.join(params["workspacePath"], "
|
14
|
+
tool_base_path = os.path.join(params["workspacePath"], "User/Local/tool")
|
15
15
|
module_path = os.path.join(tool_base_path, tool_id)
|
16
16
|
module_path = os.path.normpath(os.path.abspath(module_path))
|
17
17
|
|
@@ -0,0 +1,54 @@
|
|
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):
|
14
|
+
tool_base_path = os.path.join(params["workspacePath"], "User/Local/workflow")
|
15
|
+
module_path = os.path.join(tool_base_path, workflow_id)
|
16
|
+
module_path = os.path.normpath(os.path.abspath(module_path))
|
17
|
+
|
18
|
+
if not os.path.exists(module_path):
|
19
|
+
print(f"Workflow {workflow_id} not found")
|
20
|
+
return []
|
21
|
+
|
22
|
+
try:
|
23
|
+
with ModuleManager(module_path) as manager:
|
24
|
+
module = importlib.import_module("workflow")
|
25
|
+
export_tools = getattr(module, "export_tools")
|
26
|
+
valid_tools = []
|
27
|
+
for tool in export_tools:
|
28
|
+
assert isinstance(tool, langchain_core.tools.StructuredTool) or isinstance(
|
29
|
+
tool, types.FunctionType
|
30
|
+
), f"Tool is not a StructuredTool or function: {tool}"
|
31
|
+
if not isinstance(tool, langchain_core.tools.StructuredTool):
|
32
|
+
tool = to_agent_tool(tool)
|
33
|
+
valid_tools.append(tool)
|
34
|
+
export_tools = valid_tools
|
35
|
+
|
36
|
+
except Exception as e:
|
37
|
+
print(f"Error loading workflow {workflow_id}: {e}")
|
38
|
+
return []
|
39
|
+
|
40
|
+
for tool in export_tools:
|
41
|
+
tool.func = wrapped_func(tool, module_path)
|
42
|
+
if tool.description is None:
|
43
|
+
tool.description = "This tool is used to " + tool.name + "."
|
44
|
+
|
45
|
+
return export_tools if as_agent_tool else [tool.func for tool in export_tools]
|
46
|
+
|
47
|
+
|
48
|
+
def ref_workflows(workflow_id, as_agent_tool=False):
|
49
|
+
tools = _ref_workflows(workflow_id, as_agent_tool=as_agent_tool)
|
50
|
+
if len(tools) > 0:
|
51
|
+
return tools[0]
|
52
|
+
else:
|
53
|
+
return None
|
54
|
+
|
@@ -15,9 +15,10 @@ pycoze/bot/agent/agent_types/__init__.py,sha256=zmU2Kmrv5mCdfg-QlPn2H6pWxbGeq8s7
|
|
15
15
|
pycoze/bot/agent/agent_types/const.py,sha256=BfUKPrhAHREoMLHuFNG2bCIEkC1-f7K0LEqNg4RwiRE,70
|
16
16
|
pycoze/bot/agent/agent_types/openai_func_call_agent.py,sha256=SnEm5MODHn2uMsaMNqgzULM_91vqLHC0TU6ovwCOqLU,6675
|
17
17
|
pycoze/reference/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
18
|
-
pycoze/reference/bot.py,sha256=
|
18
|
+
pycoze/reference/bot.py,sha256=oSxlrqS0MWUwxNlTx-ZKI1p5Udj44IhrFZaPLiTMsw8,2333
|
19
19
|
pycoze/reference/lib.py,sha256=0xQJTLTHedGzQBsjuTFNBVqYc4-8Yl65gGCrAhWyOX8,2155
|
20
|
-
pycoze/reference/tool.py,sha256=
|
20
|
+
pycoze/reference/tool.py,sha256=gLffWRz6tXPiWjewplnky-yxXya_fGkx132PRYZmxpw,1630
|
21
|
+
pycoze/reference/workflow.py,sha256=22UJPdnqK1RvyGE4fxkvQqDxVM6YbayLmbuZK3bpbrA,1923
|
21
22
|
pycoze/ui/__init__.py,sha256=7xAfL2lfG7-jllPJEZUJO89xUE9sNzvo1y0WmBswjBI,458
|
22
23
|
pycoze/ui/base.py,sha256=sbBZGMUtlosWHQJpxMULa1bGByeSlcldtE9QXNyiJmM,1093
|
23
24
|
pycoze/ui/color.py,sha256=cT9Ib8uNzkOKxyW0IwVj46o4LwdB1xgNCj1_Rou9d_4,854
|
@@ -27,8 +28,8 @@ pycoze/utils/__init__.py,sha256=Gi5EnrWZGMD2JRejgV4c_VLCXyvA2wwBFI_niDF5MUE,110
|
|
27
28
|
pycoze/utils/arg.py,sha256=GtfGbMTMdaK75Fwh6MpUe1pCA5X6Ep4LFG7a72YrzjI,525
|
28
29
|
pycoze/utils/env.py,sha256=W04lhvTHhAAC6EldP6kk2xrctqtu8K6kl1vDLZDNeh8,561
|
29
30
|
pycoze/utils/text_or_file.py,sha256=gpxZVWt2DW6YiEg_MnMuwg36VNf3TX383QD_1oZNB0Y,551
|
30
|
-
pycoze-0.1.
|
31
|
-
pycoze-0.1.
|
32
|
-
pycoze-0.1.
|
33
|
-
pycoze-0.1.
|
34
|
-
pycoze-0.1.
|
31
|
+
pycoze-0.1.193.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
|
32
|
+
pycoze-0.1.193.dist-info/METADATA,sha256=FeRBlJCfv9JYdmtXlVpQaSMvp4dQK2kBKWKFtXn0QCg,726
|
33
|
+
pycoze-0.1.193.dist-info/WHEEL,sha256=bFJAMchF8aTQGUgMZzHJyDDMPTO3ToJ7x23SLJa1SVo,92
|
34
|
+
pycoze-0.1.193.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
|
35
|
+
pycoze-0.1.193.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|