autobyteus 1.0.4__py3-none-any.whl → 1.0.6__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.
Files changed (35) hide show
  1. autobyteus/agent/agent.py +1 -1
  2. autobyteus/agent/message/send_message_to.py +0 -3
  3. autobyteus/llm/autobyteus_provider.py +2 -1
  4. autobyteus/llm/llm_factory.py +33 -13
  5. autobyteus/llm/models.py +12 -0
  6. autobyteus/llm/ollama_provider.py +1 -0
  7. autobyteus/tools/ask_user_input.py +8 -19
  8. autobyteus/tools/base_tool.py +52 -24
  9. autobyteus/tools/bash/bash_executor.py +3 -15
  10. autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py +8 -4
  11. autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py +12 -55
  12. autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py +9 -5
  13. autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py +8 -4
  14. autobyteus/tools/browser/standalone/google_search_ui.py +6 -32
  15. autobyteus/tools/browser/standalone/navigate_to.py +8 -16
  16. autobyteus/tools/browser/standalone/webpage_image_downloader.py +9 -60
  17. autobyteus/tools/browser/standalone/webpage_reader.py +8 -6
  18. autobyteus/tools/browser/standalone/webpage_screenshot_taker.py +9 -6
  19. autobyteus/tools/factory/tool_factory.py +7 -5
  20. autobyteus/tools/file/file_reader.py +6 -8
  21. autobyteus/tools/file/file_writer.py +6 -9
  22. autobyteus/tools/image_downloader.py +18 -41
  23. autobyteus/tools/pdf_downloader.py +8 -13
  24. autobyteus/tools/registry/__init__.py +11 -0
  25. autobyteus/tools/registry/tool_definition.py +60 -0
  26. autobyteus/tools/registry/tool_registry.py +106 -0
  27. autobyteus/tools/timer.py +16 -18
  28. autobyteus/tools/tool_meta.py +52 -0
  29. autobyteus/tools/utils.py +1 -1
  30. autobyteus/tools/web_page_pdf_generator.py +8 -4
  31. {autobyteus-1.0.4.dist-info → autobyteus-1.0.6.dist-info}/METADATA +2 -2
  32. {autobyteus-1.0.4.dist-info → autobyteus-1.0.6.dist-info}/RECORD +35 -31
  33. {autobyteus-1.0.4.dist-info → autobyteus-1.0.6.dist-info}/WHEEL +1 -1
  34. {autobyteus-1.0.4.dist-info → autobyteus-1.0.6.dist-info}/licenses/LICENSE +0 -0
  35. {autobyteus-1.0.4.dist-info → autobyteus-1.0.6.dist-info}/top_level.txt +0 -0
autobyteus/tools/timer.py CHANGED
@@ -30,6 +30,22 @@ class Timer(BaseTool, EventEmitter):
30
30
  self._is_running: bool = False
31
31
  self._task: Optional[asyncio.Task] = None
32
32
 
33
+ @classmethod
34
+ def tool_usage_xml(cls):
35
+ """
36
+ Return an XML string describing the usage of the Timer tool.
37
+
38
+ Returns:
39
+ str: An XML description of how to use the Timer tool.
40
+ """
41
+ return '''Timer: Sets and runs a timer, emitting events with remaining time. Usage:
42
+ <command name="Timer">
43
+ <arg name="duration">300</arg>
44
+ <arg name="interval" optional="true">60</arg>
45
+ </command>
46
+ where duration and interval are in seconds. interval is optional and defaults to 60 seconds.
47
+ '''
48
+
33
49
  def set_duration(self, duration: int):
34
50
  """
35
51
  Set the duration of the timer.
@@ -103,21 +119,3 @@ class Timer(BaseTool, EventEmitter):
103
119
 
104
120
  self.start()
105
121
  return f"Timer started for {self.duration} seconds, emitting events every {self.interval} seconds"
106
-
107
- def tool_usage(self):
108
- """
109
- Return a string describing the usage of the Timer.
110
- """
111
- return 'Timer: Sets and runs a timer, emitting events with remaining time. Usage: <<<Timer(duration=300, interval=60)>>>, where duration and interval are in seconds.'
112
-
113
- def tool_usage_xml(self):
114
- """
115
- Return an XML string describing the usage of the Timer.
116
- """
117
- return '''Timer: Sets and runs a timer, emitting events with remaining time. Usage:
118
- <command name="Timer">
119
- <arg name="duration">300</arg>
120
- <arg name="interval" optional="true">60</arg>
121
- </command>
122
- where duration and interval are in seconds. interval is optional and defaults to 60 seconds.
123
- '''
@@ -0,0 +1,52 @@
1
+ # file: autobyteus/tools/tool_meta.py
2
+ import logging
3
+ from abc import ABCMeta
4
+
5
+ # Import the global registry and definition class from the registry package
6
+ from autobyteus.tools.registry import default_tool_registry, ToolDefinition
7
+
8
+ logger = logging.getLogger(__name__) # Using __name__ for specific logger
9
+
10
+ class ToolMeta(ABCMeta):
11
+ """
12
+ Metaclass for BaseTool that automatically registers concrete tool subclasses
13
+ with the default_tool_registry using their static name and usage description
14
+ obtained from class method `tool_usage()`.
15
+ """
16
+ def __init__(cls, name, bases, dct):
17
+ """
18
+ Called when a class using this metaclass is defined.
19
+ """
20
+ super().__init__(name, bases, dct)
21
+
22
+ # Prevent registration of the BaseTool class itself or other explicitly abstract classes
23
+ if name == 'BaseTool' or getattr(cls, "__abstractmethods__", None):
24
+ logger.debug(f"Skipping registration for abstract class: {name}")
25
+ return
26
+
27
+ try:
28
+ # Get static/class info from the class being defined
29
+ tool_name = cls.get_name()
30
+
31
+ usage_description = cls.tool_usage()
32
+
33
+ # Basic validation of fetched static info
34
+ if not tool_name or not isinstance(tool_name, str):
35
+ logger.error(f"Tool class {name} must return a valid string from static get_name(). Skipping registration.")
36
+ return
37
+ if not usage_description or not isinstance(usage_description, str):
38
+ # Updated error message to reflect source method
39
+ logger.error(f"Tool class {name} must return a valid string from class method tool_usage(). Skipping registration.")
40
+ return
41
+
42
+ # Create definition using name and the usage description from tool_usage()
43
+ definition = ToolDefinition(name=tool_name, description=usage_description)
44
+ default_tool_registry.register_tool(definition)
45
+ logger.info(f"Auto-registered tool: '{tool_name}' from class {name}")
46
+
47
+ except AttributeError as e:
48
+ # Catch if required methods are missing (get_name or tool_usage/tool_usage_xml)
49
+ logger.error(f"Tool class {name} is missing required static/class method ({e}). Skipping registration.")
50
+ except Exception as e:
51
+ logger.error(f"Failed to auto-register tool class {name}: {e}", exc_info=True)
52
+
autobyteus/tools/utils.py CHANGED
@@ -13,5 +13,5 @@ def format_tool_usage_info(tools: List[BaseTool]) -> str:
13
13
  """
14
14
  tool_usage_info = ""
15
15
  for i, tool in enumerate(tools):
16
- tool_usage_info += f" {i + 1} {tool.tool_usage_xml()}\n\n"
16
+ tool_usage_info += f" {i + 1} {tool.tool_usage()}\n\n"
17
17
  return tool_usage_info.strip()
@@ -12,10 +12,14 @@ class WebPagePDFGenerator(BaseTool, UIIntegrator):
12
12
  UIIntegrator.__init__(self)
13
13
  self.logger = logging.getLogger(__name__)
14
14
 
15
- def tool_usage(self):
16
- return "WebPagePDFGenerator: Generates a PDF of a given webpage in A4 format and saves it to the specified directory. Usage: <<<WebPagePDFGenerator(url='webpage_url', save_dir='path/to/save/directory')>>>, where 'webpage_url' is a string containing the URL of the webpage to generate a PDF from, and 'path/to/save/directory' is the directory where the PDF will be saved."
15
+ @classmethod
16
+ def tool_usage_xml(cls):
17
+ """
18
+ Return an XML string describing the usage of the WebPagePDFGenerator tool.
17
19
 
18
- def tool_usage_xml(self):
20
+ Returns:
21
+ str: An XML description of how to use the WebPagePDFGenerator tool.
22
+ """
19
23
  return '''
20
24
  WebPagePDFGenerator: Generates a PDF of a given webpage in A4 format and saves it to the specified directory. Usage:
21
25
  <command name="WebPagePDFGenerator">
@@ -83,4 +87,4 @@ class WebPagePDFGenerator(BaseTool, UIIntegrator):
83
87
  Args:
84
88
  file_path (str): The path to save the PDF to.
85
89
  """
86
- await self.page.pdf(path=file_path, format='A4')
90
+ await self.page.pdf(path=file_path, format='A4')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: autobyteus
3
- Version: 1.0.4
3
+ Version: 1.0.6
4
4
  Summary: Multi-Agent framework
5
5
  Home-page: https://github.com/AutoByteus/autobyteus
6
6
  Author: Ryan Zheng
@@ -28,7 +28,7 @@ Requires-Dist: Jinja2
28
28
  Requires-Dist: ollama==0.4.5
29
29
  Requires-Dist: mistral_common
30
30
  Requires-Dist: aiohttp
31
- Requires-Dist: autobyteus-llm-client==1.0.9
31
+ Requires-Dist: autobyteus-llm-client==1.1.0
32
32
  Requires-Dist: brui-core==1.0.8
33
33
  Provides-Extra: dev
34
34
  Requires-Dist: coverage; extra == "dev"
@@ -1,7 +1,7 @@
1
1
  autobyteus/__init__.py,sha256=ij7pzJD0e838u_nQIypAlXkJQgUkcB898Gqw2Dovv-s,110
2
2
  autobyteus/check_requirements.py,sha256=nLWmqMlGiAToQuub68IpL2EhRxFZ1CyCwRCMi2C5hrY,853
3
3
  autobyteus/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- autobyteus/agent/agent.py,sha256=6a05KNwL3R-XvQKCcG3B4NsHmWfNdV1LySj6huz7M1Y,10247
4
+ autobyteus/agent/agent.py,sha256=T8ccpNz4j89oBnxdMkDhEZaBkI7yFNX_DZRbNyUCarE,10243
5
5
  autobyteus/agent/async_agent.py,sha256=rltz-Q2vT85RRIVO5Fcz15colqtc0jhZEUzxQHxMIB0,6664
6
6
  autobyteus/agent/async_group_aware_agent.py,sha256=eySdlxy4qMXeGClpXZ9zFTPI19ZZeWQDAdNCxcScl-w,6274
7
7
  autobyteus/agent/exceptions.py,sha256=tfXvey5SkT70X6kcu29o8YO91KB0hI9_uLrba91_G2s,237
@@ -15,7 +15,7 @@ autobyteus/agent/group/group_aware_agent.py,sha256=mGUzlaNHJ4QNEq2bSpICTIbUfhwUT
15
15
  autobyteus/agent/message/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  autobyteus/agent/message/message.py,sha256=s5azAIEilDHyptqYpVRIZVqvozB78pz-3dtmhAyPWME,2010
17
17
  autobyteus/agent/message/message_types.py,sha256=0UVCPxf73plo0IBxrxTWOX5X-18P-lPR1IccBYKx-yQ,867
18
- autobyteus/agent/message/send_message_to.py,sha256=I6-ES98PKDzEhx2KKWuXfgelLS4NmzcB0xlu-a41r7A,2248
18
+ autobyteus/agent/message/send_message_to.py,sha256=9BVUqk7BavtGZ9i2kRtRWQR37Do-pA04v4DDUL08kek,2177
19
19
  autobyteus/agent/orchestrator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
20
  autobyteus/agent/orchestrator/base_agent_orchestrator.py,sha256=nwQeBNwWjttq_zRnQPd7hbCwOOuf9pb2QxYpMZRjhi8,2998
21
21
  autobyteus/agent/orchestrator/multi_replica_agent_orchestrator.py,sha256=AtWpX2n5ZcTkyrV89JwYlixQ4YpKoiydERY_QGOf90s,3269
@@ -31,11 +31,11 @@ autobyteus/events/event_emitter.py,sha256=4y0T5UzC7Ep22RXSNSNsLkAx5zu031_JlOcD28
31
31
  autobyteus/events/event_manager.py,sha256=OnMHEj0NM8hBh2R0ZLS3Lx2yMzDr2QPvOjFPcwX88Qk,3698
32
32
  autobyteus/events/event_types.py,sha256=ziG23LO5Z1gz8Tpnlo-FpVnjO1QLeBncyusyxtvKyk4,473
33
33
  autobyteus/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
- autobyteus/llm/autobyteus_provider.py,sha256=qjjOyL3k4kTGeJdIptaFlHiOJwZ3Wl1eXCdX0PZmHnU,6604
34
+ autobyteus/llm/autobyteus_provider.py,sha256=WCLUZM24UUB9Gl32WKgwoyXx41pnRXJiz-c9PpiC_C4,6747
35
35
  autobyteus/llm/base_llm.py,sha256=YiufOXRENzJmcMkNOVb1KHeNAdeYIQJ4jJdiiHMjvL8,9029
36
- autobyteus/llm/llm_factory.py,sha256=jR0QbZKSPRtJtOhxgxBcN89EOBSqqlGMT17YExpb07c,10766
37
- autobyteus/llm/models.py,sha256=3FwM-ZXSWrAyzg9iK8UhTHD1kXleRgmGOsQBBNRueTQ,2557
38
- autobyteus/llm/ollama_provider.py,sha256=mnb70IYEJXIPaFPSoGV3uTDFfOYUjY5TJwFbI50Rw_k,3922
36
+ autobyteus/llm/llm_factory.py,sha256=sCOsplGLJJ-7G40r5uh0M0MuMVi_Eyo2STJeBoUrMGw,11566
37
+ autobyteus/llm/models.py,sha256=d1WeEnbe0hauc0FJTDb5D3o5dilYan-rHlgnQZPT80g,3052
38
+ autobyteus/llm/ollama_provider.py,sha256=1JitvsA1sJAULZHLJkegs9Zoz9ZrhHbn1qyMpsmq0Ks,4013
39
39
  autobyteus/llm/providers.py,sha256=qDMtQa46-NB4oXvBadnpzAhJGIjMEFvBVBk-BErbkN0,310
40
40
  autobyteus/llm/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
41
  autobyteus/llm/api/autobyteus_llm.py,sha256=zSn5DW7kJfVlHWC4sUjTGy9LSFkwnEDEBvQiAgLPn40,5197
@@ -83,24 +83,25 @@ autobyteus/prompt/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
83
83
  autobyteus/prompt/storage/prompt_version_model.py,sha256=_0sRkhKpojEm7VPXj6XjU1E9AAiYPrQx03K-BM5Ht24,1171
84
84
  autobyteus/prompt/storage/prompt_version_repository.py,sha256=yQ8UO9QPPG5CHh34VbXnmOL8v4Nb4Fukj8eWzcUcfZU,3238
85
85
  autobyteus/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
- autobyteus/tools/ask_user_input.py,sha256=etvImsFRBlEhMDSBuQ2KXTE1tTkPYjBe1zxL9oeecOw,3187
87
- autobyteus/tools/base_tool.py,sha256=AM-SjEIyxG2WkMIa3VmSSUYBsqfIeaNYNASMP3tYXNU,1565
88
- autobyteus/tools/image_downloader.py,sha256=1iSNNKbPtYvaVcodpfeV7bBmJtl3fFIyHTpUREoN9eI,5641
89
- autobyteus/tools/pdf_downloader.py,sha256=za_L7acOjxMxtn-Y43zhPGofvQVOgq206oCXzDJiq-A,3600
90
- autobyteus/tools/timer.py,sha256=sqYRfDMXB9t4wEVViDk7yEO5UfU5EjxdgytzPFMYQ-g,4560
91
- autobyteus/tools/utils.py,sha256=uzbhhE4g2ajnmaK4Cw7jNHUU45qqUrS6guOsUVmn3NQ,550
92
- autobyteus/tools/web_page_pdf_generator.py,sha256=2kJ6l9n6CaaTfGK8XYcPis_IAhtoFYdHGRvKAOyhFzU,3414
86
+ autobyteus/tools/ask_user_input.py,sha256=XiyHwsGpnLj8PexHQEmr0Rc9pCPzfaluo2-q0Ctfq58,2681
87
+ autobyteus/tools/base_tool.py,sha256=5qv-ILTdDN4lgVlC52wdfl7pFypq3iI4P32q1sxOc7w,2703
88
+ autobyteus/tools/image_downloader.py,sha256=DAFXY_lwXe2cDrNrUC2cU4J43TcP7cmC-sF_ORFj6WQ,4818
89
+ autobyteus/tools/pdf_downloader.py,sha256=oIuEqoIHCpR0xZbA_9n8-Grc6f_V_8Pre4ucKcleTCw,3317
90
+ autobyteus/tools/timer.py,sha256=2z_R1aaHxf3sE_bIgND_VTbGmk3-caIfkCBMUToNKZU,4381
91
+ autobyteus/tools/tool_meta.py,sha256=AyvX5v9YKvyze1YpnA011VDVAktwt5DXVy59pFbC8Qk,2425
92
+ autobyteus/tools/utils.py,sha256=PuHGlARmNx5HA2YFVF5XA36MoeAyFL6voK10S12AYS0,546
93
+ autobyteus/tools/web_page_pdf_generator.py,sha256=OQPyUoqJV5N5cPjhzJJh6HeB2IA0LKjXCrQIUf2mmXw,3229
93
94
  autobyteus/tools/bash/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
94
- autobyteus/tools/bash/bash_executor.py,sha256=cX-JR02Z4dxJ10gqEP8t2b5ZkLfaiOeLO0UmmAzorw0,3474
95
+ autobyteus/tools/bash/bash_executor.py,sha256=Bo-LxzzGKLONweXS0AEeczmpkBNcmgE2VJ3m-tayCHg,3024
95
96
  autobyteus/tools/bash/factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
97
  autobyteus/tools/bash/factory/bash_executor_factory.py,sha256=IZiKBc2QwrZmB3qHlUM-geUQ9G4BbnFRCI1veGY890Y,236
97
98
  autobyteus/tools/browser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
98
99
  autobyteus/tools/browser/session_aware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
99
- autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py,sha256=bZpM9lW_jZJai_FUMkO6wnrPY1m6gCNp-DFDihW0tNA,2443
100
+ autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py,sha256=0IWjMSRyq3SV7L3akPwJBPH8b8-8z4zVj1UrMGPf8S0,2427
100
101
  autobyteus/tools/browser/session_aware/browser_session_aware_tool.py,sha256=qapnkteZ2WM3wpygKieERbiewF_g2gGA0MXgbNewBFE,1319
101
- autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py,sha256=rmEvJBkvz2TQDsWraq1JfHyWRnhMTZW8U_GJZjU0u0k,8871
102
- autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py,sha256=fJSYcaWWiBKk-Wlj5IfrTG_FJT2R6e1Hv4--B-Zmq6A,1407
103
- autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py,sha256=ZeBtxxztEtPhvs_vWvhtJdY4gscJhEptoab8Ll0ttXs,2195
102
+ autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py,sha256=xR7zu3YKe3D3H7AVxU0VXOc55qPvj7ilqEUl-8nbsjI,6208
103
+ autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py,sha256=0WzgPAISPYy6rSDpGESeNijYJ43Lt0hiyFH-kl8WFLU,1366
104
+ autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py,sha256=acmuooL-MrN-tN1dv6MVr4LyKs9tmAhjt0a0VkFq1Yc,1807
104
105
  autobyteus/tools/browser/session_aware/shared_browser_session.py,sha256=WjdkY6vrE96hluwHQS8U0K5z3XE8QMw2-fDRv5VFhXA,326
105
106
  autobyteus/tools/browser/session_aware/shared_browser_session_manager.py,sha256=TAlpvZa1Jl8Hoiqe090vzHEHmv48XLUYbAS6lhBSpf8,1032
106
107
  autobyteus/tools/browser/session_aware/web_element_action.py,sha256=jPWGmqoTB7Hpk6APQOWglLUaJmf5c_nR8Hh0AbT4fkM,477
@@ -109,11 +110,11 @@ autobyteus/tools/browser/session_aware/factory/browser_session_aware_web_element
109
110
  autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_reader_factory.py,sha256=a5CArnsLXSKJ2Gd7Y5d6m1Dr5-30tsLxusHiuJWcXBY,596
110
111
  autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_screenshot_taker_factory.py,sha256=TJu_yKie41jmUncq1NNNLPE-K-C7brpWdPSUE2hyPV0,402
111
112
  autobyteus/tools/browser/standalone/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
- autobyteus/tools/browser/standalone/google_search_ui.py,sha256=zBHmspOs0zlf0Eep7CsiSNVti47VEeFyjtZRlQuWjhA,4676
113
- autobyteus/tools/browser/standalone/navigate_to.py,sha256=USjqmjWRbYQSCP81ci2X6rzjvWxxLgA-3XWeOI1K9xk,2108
114
- autobyteus/tools/browser/standalone/webpage_image_downloader.py,sha256=ToxqSWUZzNZ9RtcPL1-n4fcE0VwJXF8DzfyU1DVPWLU,4723
115
- autobyteus/tools/browser/standalone/webpage_reader.py,sha256=ALVzDSqZ72DpVv7wAOlSuAflY1Bm6uh6EMDCCk_6b48,3010
116
- autobyteus/tools/browser/standalone/webpage_screenshot_taker.py,sha256=CZvWpVPFoJE8ZBoMPCerQk6sbVoaZahWvlKIuxqrIJw,2218
113
+ autobyteus/tools/browser/standalone/google_search_ui.py,sha256=jnAIR5lJsm7AMx7roN5SV61Qz8_SehIl90uIQsV_eto,3217
114
+ autobyteus/tools/browser/standalone/navigate_to.py,sha256=mi-IBwNWbtaKNH5X6xFoETDm0TkEMaaQ-pZJ1M_XBRY,1705
115
+ autobyteus/tools/browser/standalone/webpage_image_downloader.py,sha256=xsxF5fh1We-5fo0Mx2Isuw1vaoB2knGD97D_cxA4Y94,2862
116
+ autobyteus/tools/browser/standalone/webpage_reader.py,sha256=vQbMgqcyxTvgLnpkfFM7T64aq4xW0-yv5REE_Q0K5TU,2877
117
+ autobyteus/tools/browser/standalone/webpage_screenshot_taker.py,sha256=0iWQAsTc5mtoxFxmboN_eVK-a6u7Wtd56JAe9ppPk_0,2038
117
118
  autobyteus/tools/browser/standalone/factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
118
119
  autobyteus/tools/browser/standalone/factory/google_search_factory.py,sha256=k2hvPhYAf85HxPPHYq7TpkIJUE3TuAsQTjCpLZ6vvKE,461
119
120
  autobyteus/tools/browser/standalone/factory/webpage_reader_factory.py,sha256=mR6910LzPxG2DD8i5tlHEReAP72SLhL46FY0e_SRLHE,463
@@ -122,11 +123,11 @@ autobyteus/tools/factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
122
123
  autobyteus/tools/factory/ask_user_input_factory.py,sha256=0NA0p9wuNzHA4rG0gOI0GghX3E5Qt49Q2tEEfVFJQzo,232
123
124
  autobyteus/tools/factory/image_downloader_factory.py,sha256=9n9AOreN1RgsagBZWqf9Fxz5ATFVLX4TnKv8L_U8bj8,418
124
125
  autobyteus/tools/factory/pdf_downloader_factory.py,sha256=H1vsiGFs5jKq9H5mFCjzn5Kfu-iZPhA2j-orw6IALjA,408
125
- autobyteus/tools/factory/tool_factory.py,sha256=3iksOD8v8wQvkR2YtuT2H2fEjY1PO1flJ4S1pzoCoEY,229
126
+ autobyteus/tools/factory/tool_factory.py,sha256=EgX1v0v6tBKY_PSpfv2WHAnoXOf-xr9Z1b4GTsCkWJw,265
126
127
  autobyteus/tools/factory/webpage_image_downloader_factory.py,sha256=0UbwNIYaDh9RE-qOYPr2RIa_kb8eER50_vSb3BgjJ_c,301
127
128
  autobyteus/tools/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
128
- autobyteus/tools/file/file_reader.py,sha256=vOSdRZ-Nl1BlNxdxxFNnIqCmHExih5RmFR9VocNpmdY,1923
129
- autobyteus/tools/file/file_writer.py,sha256=EubnxcX1T_PVWnQTIZ1GJsFefFRIGJWVAgMxf0aNEwQ,2260
129
+ autobyteus/tools/file/file_reader.py,sha256=glNWFlLLNrS6E2nX6V2aWMxZy_36W4T-ybNjMT_X--k,1746
130
+ autobyteus/tools/file/file_writer.py,sha256=VmsjW5MrLWSD95kwcORzSfJ_XFwqLvjQ4TZiUrWh3xw,1968
130
131
  autobyteus/tools/file/factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
131
132
  autobyteus/tools/file/factory/file_reader_factory.py,sha256=e6Dn7E6kO4iJ_XadSu-NlLSA2mPd8nv694zW4BnzQJc,226
132
133
  autobyteus/tools/file/factory/file_writer_factory.py,sha256=sILoFqWoR_CJHTzV3z9cUrk6dQFHiTFYEOHGiTHSr9I,226
@@ -137,6 +138,9 @@ autobyteus/tools/operation/file_operation.py,sha256=bAehQ9PfHoCDpk9Wa7vx9h3ohzVu
137
138
  autobyteus/tools/operation/file_rename_operation.py,sha256=pExiC69HUzYbKihlVumlGHMGxmmrsKQB0JfAM5x4JH0,1710
138
139
  autobyteus/tools/operation/operation.py,sha256=9sIZnlrPct5CwkCKuwbspVKvjF4KumP6twmXRo1blwo,1702
139
140
  autobyteus/tools/operation/shell_operation.py,sha256=_BiGIRGWCzzwPVtbqFwXpHOvnqH68YqJujQI-gWeKx0,1860
141
+ autobyteus/tools/registry/__init__.py,sha256=WeGvjcuCf0_cTPMV1pjHq8Am6FuiDqDYVIldYUeUj-E,330
142
+ autobyteus/tools/registry/tool_definition.py,sha256=7xjq_BrDpRWxTrCmLAomQFL2ERmDV_8L_Jz3D-YQQpo,2090
143
+ autobyteus/tools/registry/tool_registry.py,sha256=BKlPqTpm_96aLF1_C4YB0jIsI3JP5_rpiwGp9gPoiiA,3823
140
144
  autobyteus/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
141
145
  autobyteus/utils/dynamic_enum.py,sha256=c_mgKtKrjb958LlCWeAApl1LMvVB7U_0SWl-8XFhRag,1339
142
146
  autobyteus/utils/file_utils.py,sha256=QK0LvrwA5c9FDjpSrfPPEQbu_AirteJNiLad9yRahDY,512
@@ -146,8 +150,8 @@ autobyteus/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
146
150
  autobyteus/workflow/simple_task.py,sha256=CcEEfamaZk1pjkPG9TVmlvzMAeTznHvQncRIwgp48tI,3378
147
151
  autobyteus/workflow/task.py,sha256=CYyPs8YvEwpWXcF4swJukPNuv6RRs3X-9UOnN6vG2Ko,5746
148
152
  autobyteus/workflow/workflow.py,sha256=3PXZVtgnajGUAbZR22xht_2pU2WjYNmA1j0f5TkM3G0,1453
149
- autobyteus-1.0.4.dist-info/licenses/LICENSE,sha256=Ompok_c8HRsXRwmax-pGR9OZRRxZC9RPp4JB6eTJd0M,1360
150
- autobyteus-1.0.4.dist-info/METADATA,sha256=Huf4i83fOXOf8v9CNup8sM4dM44hQpZrYzCGzAQdwKI,4399
151
- autobyteus-1.0.4.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
152
- autobyteus-1.0.4.dist-info/top_level.txt,sha256=OeVeFlKcnysp6uMGe8TDaoFeuh4NUK4wZIfNjXCWKTE,11
153
- autobyteus-1.0.4.dist-info/RECORD,,
153
+ autobyteus-1.0.6.dist-info/licenses/LICENSE,sha256=Ompok_c8HRsXRwmax-pGR9OZRRxZC9RPp4JB6eTJd0M,1360
154
+ autobyteus-1.0.6.dist-info/METADATA,sha256=jgzw1VJB9NjTVmyImefRq5i0sIMkN-x-_1EJUaJKrTc,4399
155
+ autobyteus-1.0.6.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
156
+ autobyteus-1.0.6.dist-info/top_level.txt,sha256=OeVeFlKcnysp6uMGe8TDaoFeuh4NUK4wZIfNjXCWKTE,11
157
+ autobyteus-1.0.6.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (78.1.0)
2
+ Generator: setuptools (80.4.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5