pycoze 0.1.192__tar.gz → 0.1.193__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.193}/PKG-INFO +1 -1
  2. pycoze-0.1.193/pycoze/reference/workflow.py +54 -0
  3. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze.egg-info/PKG-INFO +1 -1
  4. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze.egg-info/SOURCES.txt +1 -0
  5. {pycoze-0.1.192 → pycoze-0.1.193}/setup.py +1 -1
  6. {pycoze-0.1.192 → pycoze-0.1.193}/LICENSE +0 -0
  7. {pycoze-0.1.192 → pycoze-0.1.193}/README.md +0 -0
  8. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/__init__.py +0 -0
  9. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/ai/__init__.py +0 -0
  10. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/ai/vram_reserve.py +0 -0
  11. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/automation/__init__.py +0 -0
  12. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/automation/browser/__init__.py +0 -0
  13. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/automation/browser/edge_driver_manager.py +0 -0
  14. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/bot/__init__.py +0 -0
  15. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/bot/agent/__init__.py +0 -0
  16. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/bot/agent/agent.py +0 -0
  17. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/bot/agent/agent_types/__init__.py +0 -0
  18. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/bot/agent/agent_types/const.py +0 -0
  19. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/bot/agent/agent_types/openai_func_call_agent.py +0 -0
  20. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/bot/agent/assistant.py +0 -0
  21. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/bot/agent/chat.py +0 -0
  22. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/bot/agent_chat.py +0 -0
  23. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/bot/bot.py +0 -0
  24. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/reference/__init__.py +0 -0
  25. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/reference/bot.py +0 -0
  26. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/reference/lib.py +0 -0
  27. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/reference/tool.py +0 -0
  28. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/ui/__init__.py +0 -0
  29. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/ui/base.py +0 -0
  30. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/ui/color.py +0 -0
  31. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/ui/typ.py +0 -0
  32. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/ui/ui_def.py +0 -0
  33. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/utils/__init__.py +0 -0
  34. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/utils/arg.py +0 -0
  35. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/utils/env.py +0 -0
  36. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze/utils/text_or_file.py +0 -0
  37. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze.egg-info/dependency_links.txt +0 -0
  38. {pycoze-0.1.192 → pycoze-0.1.193}/pycoze.egg-info/top_level.txt +0 -0
  39. {pycoze-0.1.192 → pycoze-0.1.193}/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.193
4
4
  Summary: Package for pycoze only!
5
5
  Author: Yuan Jie Xiong
6
6
  Author-email: aiqqqqqqq@qq.com
@@ -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
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycoze
3
- Version: 0.1.192
3
+ Version: 0.1.193
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.193",
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