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.
Files changed (39) hide show
  1. {pycoze-0.1.192 → pycoze-0.1.194}/PKG-INFO +1 -1
  2. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/reference/bot.py +4 -2
  3. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/reference/tool.py +4 -2
  4. pycoze-0.1.194/pycoze/reference/workflow.py +56 -0
  5. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze.egg-info/PKG-INFO +1 -1
  6. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze.egg-info/SOURCES.txt +1 -0
  7. {pycoze-0.1.192 → pycoze-0.1.194}/setup.py +1 -1
  8. {pycoze-0.1.192 → pycoze-0.1.194}/LICENSE +0 -0
  9. {pycoze-0.1.192 → pycoze-0.1.194}/README.md +0 -0
  10. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/__init__.py +0 -0
  11. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/ai/__init__.py +0 -0
  12. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/ai/vram_reserve.py +0 -0
  13. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/automation/__init__.py +0 -0
  14. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/automation/browser/__init__.py +0 -0
  15. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/automation/browser/edge_driver_manager.py +0 -0
  16. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/bot/__init__.py +0 -0
  17. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/bot/agent/__init__.py +0 -0
  18. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/bot/agent/agent.py +0 -0
  19. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/bot/agent/agent_types/__init__.py +0 -0
  20. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/bot/agent/agent_types/const.py +0 -0
  21. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/bot/agent/agent_types/openai_func_call_agent.py +0 -0
  22. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/bot/agent/assistant.py +0 -0
  23. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/bot/agent/chat.py +0 -0
  24. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/bot/agent_chat.py +0 -0
  25. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/bot/bot.py +0 -0
  26. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/reference/__init__.py +0 -0
  27. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/reference/lib.py +0 -0
  28. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/ui/__init__.py +0 -0
  29. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/ui/base.py +0 -0
  30. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/ui/color.py +0 -0
  31. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/ui/typ.py +0 -0
  32. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/ui/ui_def.py +0 -0
  33. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/utils/__init__.py +0 -0
  34. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/utils/arg.py +0 -0
  35. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/utils/env.py +0 -0
  36. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze/utils/text_or_file.py +0 -0
  37. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze.egg-info/dependency_links.txt +0 -0
  38. {pycoze-0.1.192 → pycoze-0.1.194}/pycoze.egg-info/top_level.txt +0 -0
  39. {pycoze-0.1.192 → pycoze-0.1.194}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycoze
3
- Version: 0.1.192
3
+ Version: 0.1.194
4
4
  Summary: Package for pycoze only!
5
5
  Author: Yuan Jie Xiong
6
6
  Author-email: aiqqqqqqq@qq.com
@@ -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
- tool_base_path = os.path.join(params["workspacePath"], "User/Local/bot")
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
- tool_base_path = os.path.join(params["workspacePath"], "User/Local/tool")
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
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycoze
3
- Version: 0.1.192
3
+ Version: 0.1.194
4
4
  Summary: Package for pycoze only!
5
5
  Author: Yuan Jie Xiong
6
6
  Author-email: aiqqqqqqq@qq.com
@@ -25,6 +25,7 @@ pycoze/reference/__init__.py
25
25
  pycoze/reference/bot.py
26
26
  pycoze/reference/lib.py
27
27
  pycoze/reference/tool.py
28
+ pycoze/reference/workflow.py
28
29
  pycoze/ui/__init__.py
29
30
  pycoze/ui/base.py
30
31
  pycoze/ui/color.py
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="pycoze",
5
- version="0.1.192",
5
+ version="0.1.194",
6
6
  packages=find_packages(),
7
7
  install_requires=[],
8
8
  author="Yuan Jie Xiong",
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